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 450190a commit d0d2ed3Copy full SHA for d0d2ed3
.github/labeler.yml
@@ -48,6 +48,7 @@ github-actions:
48
- .github/ISSUE_TEMPLATE/*
49
- .github/labeler.yml
50
- .github/pull_request_template
51
+ - .github/workflow/pull-request-labeler.yaml
52
53
release:
54
- .github/workflows/publish-chart.yaml
.github/workflows/pull-request-labeler.yaml
@@ -0,0 +1,14 @@
1
+name: "Pull Request Labeler"
2
+on:
3
+- pull_request_target
4
+
5
+jobs:
6
+ triage:
7
+ permissions:
8
+ contents: read
9
+ pull-requests: write
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/labeler@v4
13
+ with:
14
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments