We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ee54a commit f218880Copy full SHA for f218880
1 file changed
.github/workflows/ai-labeler.yaml
@@ -0,0 +1,29 @@
1
+name: ai-labeler
2
+on:
3
+ issues:
4
+ types: [opened, edited, reopened, labeled]
5
+ pull_request:
6
7
+
8
+jobs:
9
+ ai-labeler:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ issues: write
14
+ pull-requests: write
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - if: >-
18
+ github.event.action != 'labeled' ||
19
+ github.event.label.name == 'status/needs triage'
20
+ uses: jlowin/ai-labeler@v0.5.1
21
+ with:
22
+ include-repo-labels: true
23
+ openai-api-key: ${{ secrets.OPENAI_API_KEY }}
24
25
+ github.event.action == 'labeled' &&
26
27
+ uses: actions-ecosystem/action-remove-labels@v1
28
29
+ labels: "status/needs triage"
0 commit comments