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 5d1da5c commit 289fc1cCopy full SHA for 289fc1c
.github/workflows/label-precommit-prs.yml
@@ -0,0 +1,18 @@
1
+name: Label Pre-Commit PRs
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize]
6
7
+jobs:
8
+ label:
9
+ if: github.actor == 'pre-commit-ci[bot]'
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ pull-requests: write
13
+ steps:
14
+ - name: Add "no releasenotes" label
15
+ uses: actions-ecosystem/action-add-labels@v1
16
+ with:
17
+ github_token: ${{ secrets.GITHUB_TOKEN }}
18
+ labels: no releasenotes
0 commit comments