Skip to content

CLI fails with Node.js v22.20.0: "Cannot read properties of undefined (reading 'runtimeShorthand')" #59

CLI fails with Node.js v22.20.0: "Cannot read properties of undefined (reading 'runtimeShorthand')"

CLI fails with Node.js v22.20.0: "Cannot read properties of undefined (reading 'runtimeShorthand')" #59

name: Update new issue
on:
issues:
types:
- opened
jobs:
label_issues:
name: Label issues
runs-on: ubuntu-latest
permissions:
issues: write
steps:
# Add the "t-tooling" label to all new issues
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["t-tooling"]
})