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 f35103e commit b238bfcCopy full SHA for b238bfc
.github/workflows/pr-titles.yml
@@ -0,0 +1,26 @@
1
+name: "Lint PR"
2
+
3
+on:
4
+ pull_request_target:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - synchronize
9
+ - reopened
10
11
+permissions:
12
+ pull-requests: read
13
14
+jobs:
15
+ main:
16
+ name: Validate PR title
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: amannn/action-semantic-pull-request@v5
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ with:
23
+ types: |
24
+ fix
25
+ feat
26
+ chore
0 commit comments