Skip to content

Commit 83b8091

Browse files
authored
ci: Add Conventional Commits GitHub Action (#391)
Google GitHub App will be deprecated
1 parent eb24654 commit 83b8091

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/actions/spelling/allow.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ agentic
99
AGrpc
1010
aio
1111
aiomysql
12+
amannn
1213
aproject
1314
ARequest
1415
ARun
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Conventional Commits"
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
17+
statuses: write
18+
name: Validate PR Title
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: semantic-pull-request
22+
uses: amannn/action-semantic-pull-request@v5.5.3
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
with:
26+
validateSingleCommit: false

0 commit comments

Comments
 (0)