Skip to content

Commit 4a81213

Browse files
cbachhuberChris Bachhuber
andauthored
ci: Add conventional commits check (#3884)
## PR Checklist Please check if your PR fulfills the following requirements: - [x] Tests for the changes have been added (for bug fixes / features) - [x] Docs have been added / updated (for bug fixes / features) ## PR Type Fixing part of https://github.com/alexeagle/rules-doctor/actions/runs/20065968971/job/57554491288#step:6:1 <!-- Please check the one that applies to this PR using "x". --> - [ ] Bugfix - [ ] Feature (please, look at the "Scope of the project" section in the README.md file) - [ ] Code style update (formatting, local variables) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [X] CI related changes - [ ] Documentation content changes - [ ] Other... Please describe: ## What is the current behavior? <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. --> Issue Number: N/A ## What is the new behavior? ## Does this PR introduce a breaking change? - [X] Yes - [] No <!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. --> Might possibly make other PRs unmergeable when it's merged. ## Other information --------- Co-authored-by: Chris Bachhuber <[email protected]>
1 parent a1df577 commit 4a81213

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Verify PR title/description
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
- edited
7+
- synchronize
8+
permissions:
9+
pull-requests: read
10+
jobs:
11+
check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: amannn/action-semantic-pull-request@v6
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)