action-remove-labels
action-remove-labels copied to clipboard
[Infra] Upgrade node20
What this PR does / Why we need it
This should upgrade the module to run on Node.js 20
Fixing issue
- Upgrade Node 12 to Node XX issue: https://github.com/actions-ecosystem/action-remove-labels/issues/413
Hi, do you have any update or estimated time of release?
Hi, do you have any update or estimated time of release?
Unfortunately...
If anyone is looking for alternative I suggest to use code below
- uses: "actions/github-script@v7"
name: "Add PR labels"
with:
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
name: 'LABEL_NAME'
});
if: github.event_name == 'pull_request'