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 8d2a208 commit a444887Copy full SHA for a444887
.github/workflows/pr-title-checker.yml
@@ -0,0 +1,22 @@
1
+name: "pr-title-checker"
2
+
3
+on:
4
+ pull_request_target:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - synchronize
9
+ merge_group:
10
11
+permissions:
12
+ pull-requests: read
13
14
+jobs:
15
+ main:
16
+ name: Validate PR title
17
+ runs-on: ubuntu-latest
18
+ if: ${{ github.event_name != 'merge_group' }}
19
+ steps:
20
+ - uses: amannn/action-semantic-pull-request@v5
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments