NPM still shows v3.43.1 which has a regression issue for CLI_ARGS #2574
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: issue awaiting response | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| issue-awaiting-response: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{secrets.GH_PAT}} | |
| script: | | |
| const issue = await github.rest.issues.get({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| }) | |
| const comments = await github.paginate( | |
| github.rest.issues.listComments, { | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| } | |
| ) | |
| const labels = await github.paginate( | |
| github.rest.issues.listLabelsOnIssue, { | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| } | |
| ) | |
| if (labels.find(label => label.name === 'state: awaiting response')) { | |
| if (comments[comments.length-1].user?.login === issue.data.user?.login) { | |
| github.rest.issues.removeLabel({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| name: 'state: awaiting response' | |
| }) | |
| } | |
| } |