Reproduction-Instructions For LLVM-CI #1
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: Labeling new issues | |
on: | |
issues: | |
types: ['opened'] | |
permissions: | |
contents: read | |
jobs: | |
automate-issues-labels: | |
permissions: | |
issues: write # for andymckay/labeler to label issues | |
pull-requests: write # for andymckay/labeler to label PRs | |
runs-on: ubuntu-latest | |
if: github.repository == 'llvm/llvm-project' | |
steps: | |
- uses: andymckay/[email protected] | |
with: | |
add-labels: 'new issue' | |
ignore-if-labeled: true |