action-remove-labels icon indicating copy to clipboard operation
action-remove-labels copied to clipboard

[Infra] Upgrade node20

Open evgenii opened this issue 2 years ago • 3 comments

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

evgenii avatar Mar 17 '24 10:03 evgenii

Hi, do you have any update or estimated time of release?

kmasuhr avatar Aug 05 '24 13:08 kmasuhr

Hi, do you have any update or estimated time of release?

Unfortunately...

evgenii avatar Aug 05 '24 13:08 evgenii

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'

kmasuhr avatar Aug 05 '24 14:08 kmasuhr