diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 5b15a7a4aec..78542bb7ca2 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -131,7 +131,7 @@ jobs: }); }); issuesToCreate.slice(0, 1).forEach(issue => { - async () => { + const act = async () => { const result = await github.rest.issues.create({ owner: context.repo.owner, repo: context.repo.repo, @@ -148,6 +148,7 @@ jobs: }); } }; + act(); }); - uses: actions/github-script@v6.4.1 id: updatesetimplementations