Skip to content

[Bug report] class file has wrong version 65.0, should be 61.0 #150

[Bug report] class file has wrong version 65.0, should be 61.0

[Bug report] class file has wrong version 65.0, should be 61.0 #150

Workflow file for this run

name: Auto add label to new issue
on:
issues:
types:
- opened
jobs:
add-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v3
name: Add label to new issue
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['await triage']
})