From 7736522504012c9171d2997244b840093199c5a6 Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Sat, 28 Sep 2024 23:58:44 -0700 Subject: [PATCH] Update update-set-implementation-lists.yml --- .github/workflows/update-set-implementation-lists.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index d411ab4166a..8ba6a834cb1 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -49,7 +49,8 @@ jobs: const issues = await github.paginate(github.rest.issues.listForRepo, { owner: context.repo.owner, repo: context.repo.repo, - labels: 'tracking set' + labels: 'tracking set', + state: 'all' }); console.log("Found list of existing tracking set issues:", issues); @@ -162,7 +163,8 @@ jobs: const issues = await github.paginate(github.rest.issues.listForRepo, { owner: context.repo.owner, repo: context.repo.repo, - labels: 'tracking set' + labels: 'tracking set', + state: 'all' }); console.log("Found list of existing tracking set issues:", issues);