Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 12d2b32

Browse files
authoredMar 20, 2024
Auto-add labels for filtering in Linear (#77)
1 parent 3ff9e97 commit 12d2b32

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
 

‎.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
team/graph:
2+
- '/.*/'
3+
graph/scip-kotlin:
4+
- '/.*/'

‎.github/workflows/labeler.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Issue Labeler"
2+
on:
3+
issues:
4+
types: [opened, edited]
5+
6+
permissions:
7+
issues: write
8+
contents: read
9+
10+
jobs:
11+
triage:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: github/issue-labeler@v3.4
15+
with:
16+
configuration-path: .github/labeler.yml
17+
enable-versioned-regex: 0
18+
repo-token: ${{ github.token }}

0 commit comments

Comments
 (0)
Please sign in to comment.