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);