Support for merging configuration data into OSCAL artifacts #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Triage Label | |
on: | |
issues: | |
types: [opened, reopened] | |
permissions: | |
issues: write | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add triage label | |
uses: actions/github-script@35b1cdd1b2c1fc704b1cd9758d10f67e833fcb02 | |
with: | |
script: | | |
const issueNumber = context.issue.number; | |
github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: issueNumber, | |
labels: ['triage'] | |
}); |