NIST PUB 140-3 - Security Requirements for Cryptographic Modules #11
This file contains hidden or 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: Auto-label new issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add-label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add "needs review" label to new issues | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
labels: ['needs review'] | |
}); |