Skip to content

Commit

Permalink
Added semantic PR workflow (#75)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kreuzberger <[email protected]>
  • Loading branch information
christian-kreuzberger-dtx authored Nov 29, 2021
1 parent 4af7792 commit 9d1f9b1
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/validate-semantic-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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@7bfb19c48fc334d3dacb072cf982e81535041209 # [email protected]
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 which scopes are allowed.
scopes: |
api
cli
core
install
cloudevents
deps
deps-dev
distributor
docs
# 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 9d1f9b1

Please sign in to comment.