Skip to content

Commit 849e0f5

Browse files
committed
Automatically label new issues as available
1 parent fb9b115 commit 849e0f5

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/labeler.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
'Status: Available':
2+
- '/.*/'

.github/workflows/issue-labler.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Issue Labeler"
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
permissions:
7+
issues: write
8+
contents: read
9+
10+
jobs:
11+
triage:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: github/[email protected]
15+
with:
16+
configuration-path: .github/labeler.yml
17+
not-before: 2024-11-03T00:00:00Z
18+
enable-versioned-regex: 0
19+
repo-token: ${{ github.token }}

0 commit comments

Comments
 (0)