chore(deps): bump actions/checkout from 2.4.0 to 4.0.0 #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v5 | |
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: | | |
docs | |
tests | |
ci | |
chart | |
core | |
examples | |
# 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 |