Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/closed-issues.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/new-issues-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
'new issue':
- '/.*/'

'clang'
- '/\bclang(?!\-)\b/i'

'clang-format'
- '/\bclang-format/i'

'clang-tidy'
- '/\bclang-tidy/i'

'libc++'
- '/\blibc++(?!\-)/i'
- '/\blibcxx(?!\-)/i'

'libc++-abi'
- '/\blibc++-abi/i'
- '/\blibcxx-abi/i'

'libc'
- '/\blibc(?![-+])\b/i'

'flang'
- '/\bflang(?!\-)\b/i'

'lld'
- '/\blld(?!\-)\b/i'

'mlir'
- '/\bmlir(?!\-)\b/i'

'bolt'
- '/\bbolt(?!\-)\b/i'
12 changes: 7 additions & 5 deletions .github/workflows/new-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ permissions:
jobs:
automate-issues-labels:
permissions:
issues: write # for andymckay/labeler to label issues
pull-requests: write # for andymckay/labeler to label PRs
issues: write
runs-on: ubuntu-latest
if: github.repository == 'llvm/llvm-project'
steps:
- uses: andymckay/labeler@1.0.4
- uses: github/issue-labeler@v3.2
with:
add-labels: 'new issue'
ignore-if-labeled: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/workflows/new-issues-labeler.yml
include-title: 1
include-body: 0
sync-labels: 0