gomod(deps): Bump kraftkit.sh from 0.9.2 to 0.9.4 in /tools/go-generate-qemu-devices #575
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: check/pr | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: [staging] | |
jobs: | |
commits: | |
runs-on: ubuntu-latest | |
steps: | |
- name: format | |
if: always() | |
uses: taskmedia/action-conventional-commits@v1.1.19 | |
with: | |
types: "build|ci|docs|feat|fix|perf|refactor|style|test|revert|gomod" | |
- name: length | |
if: ${{ github.actor != 'dependabot' && github.actor != 'dependabot[bot]' }} | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '((^(?=(?:.|\n)*(?:^|\n)\[\d\]: .{69,}(?:$|\n)(?:.|\n)*)(?:.|\n)*$)|(^(?!(?:.|\n)*(?:^|\n).{74,}(?:$|\n)(?:.|\n)*)(?:.|\n)*$))' | |
flags: '' | |
error: 'The maximum line length of 74 characters is exceeded.' | |
excludeDescription: 'true' | |
excludeTitle: 'true' | |
checkAllCommitMessages: 'true' | |
accessToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: signed-off-by | |
if: always() | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^Signed-off-by: .+ \<.+\@.+\..+\>$' | |
error: 'Signed-off-by line is missing.' | |
excludeDescription: 'true' | |
excludeTitle: 'true' | |
checkAllCommitMessages: 'true' | |
accessToken: ${{ secrets.GITHUB_TOKEN }} | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: title-format | |
if: always() | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^(build|ci|docs|feat|fix|perf|refactor|style|test|revert|gomod)(\([\w\-\_\d]+\))?!?: ' | |
error: 'The PR title must follow the conventional commits format.' | |
excludeDescription: 'true' | |
excludeTitle: 'false' | |
checkAllCommitMessages: 'false' | |
accessToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: title-length | |
if: ${{ github.actor != 'dependabot' && github.actor != 'dependabot[bot]' }} | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^(?!.{75,}).*' | |
flags: '' | |
error: 'The maximum line length of 75 characters is exceeded.' | |
excludeDescription: 'true' | |
excludeTitle: 'false' | |
checkAllCommitMessages: 'false' | |
accessToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: description | |
if: ${{ github.actor != 'dependabot' && github.actor != 'dependabot[bot]' }} | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^\S+( \S+)*$' | |
error: 'The PR description must not be empty.' | |
flags: 'gm' | |
excludeDescription: 'false' | |
excludeTitle: 'true' | |
checkAllCommitMessages: 'false' | |
accessToken: ${{ secrets.GITHUB_TOKEN }} |