We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1da8596 commit c56164bCopy full SHA for c56164b
.github/workflows/semantic.yml
@@ -0,0 +1,26 @@
1
+name: "Check Semantic Commit"
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - synchronize
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
+ main:
15
+ permissions:
16
+ pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
17
+ statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
18
+ name: Validate PR Title
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: semantic-pull-request
22
+ uses: amannn/action-semantic-pull-request@c3cd5d1ea3580753008872425915e343e351ab54 # v5.2.0
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ with:
26
+ validateSingleCommit: false
0 commit comments