Skip to content

Commit

Permalink
ci: Add semantic PR check pipeline (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
mowies committed Sep 26, 2022
1 parent 9e29019 commit 663ebf9
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/validate-semantic-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Semantic PR Validation
on:
pull_request_target:
types:
- opened
- edited
- synchronize
defaults:
run:
shell: bash
jobs:
validate:
runs-on: ubuntu-20.04
steps:
- name: Validate Pull Request
uses: amannn/action-semantic-pull-request@4682b170e7c31dfbef288e994fe07853755229b4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which types are allowed.
# Default: https://github.com/commitizen/conventional-commit-types
types: |
feat
fix
build
chore
ci
docs
perf
refactor
revert
style
test
# Configure that a scope must always be provided.
requireScope: false
# When using "Squash and merge" on a PR with only one commit, GitHub
# will suggest using that commit message instead of the PR title for the
# merge commit, and it's easy to commit this by mistake. Enable this option
# to also validate the commit message for one commit PRs.
validateSingleCommit: true

0 comments on commit 663ebf9

Please sign in to comment.