We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0fabe commit 5462606Copy full SHA for 5462606
.github/workflows/pr-ai-labeler.yaml
@@ -0,0 +1,21 @@
1
+---
2
+name: PR AI Labeler
3
+
4
+on:
5
+ pull_request_target:
6
+ types: [opened, synchronize]
7
8
+permissions:
9
+ contents: read
10
+ pull-requests: write
11
12
+jobs:
13
+ label-pr:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Label PR using shared action
17
+ uses: konflux-ci/release-service-automations/pr-ai-labeler@26b8ead8ea7af6dabb73ba72b238b7757ccddb56 # main
18
+ with:
19
+ github-token: ${{ secrets.GITHUB_TOKEN }}
20
+ pr-number: ${{ github.event.pull_request.number }}
21
+ repository: ${{ github.repository }}
0 commit comments