chore(deps): bump k8s.io/code-generator from 0.30.3 to 0.31.2 in /hack/tools #1891
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: titlecheck | |
# Run on PR | |
on: | |
# enable for testing new changes | |
# pull_request: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
jobs: | |
titlecheck: | |
name: PR title follows coventional commit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check conventinal title | |
uses: aslafy-z/conventional-pr-title-action@v3.2.0 | |
with: | |
success-state: Title follows the specification. | |
failure-state: Title does not follow the specification. | |
context-name: conventional-pr-title | |
preset: conventional-changelog-angular@7.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |