We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e443209 commit 1fe8d4dCopy full SHA for 1fe8d4d
1 file changed
script/beta.ts
@@ -79,7 +79,8 @@ async function fix(pr: PR, files: string[]) {
79
async function main() {
80
console.log("Fetching open PRs with beta label...")
81
82
- const stdout = await $`gh pr list --state open --label beta --json number,title,author,labels --limit 100`.text()
+ const stdout =
83
+ await $`gh pr list --state open --draft=false --label beta --json number,title,author,labels --limit 100`.text()
84
const prs: PR[] = JSON.parse(stdout).sort((a: PR, b: PR) => a.number - b.number)
85
86
console.log(`Found ${prs.length} open PRs with beta label`)
0 commit comments