Skip to content

manage other file type in version_file #16

manage other file type in version_file

manage other file type in version_file #16

Workflow file for this run

name: Label issues
on:
issues:
types:
- opened
- reopened
jobs:
label-issue:
permissions:
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['issue-status: needs-triage']
})