Bump golang/go from go1.23.0 to 1.23.1 #546
Workflow file for this run
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 commit message style on PRs' | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
jobs: | |
check-commit-message-style-pr: | |
name: Check commit message style on PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check | |
if: | | |
(github.actor!= 'dependabot[bot]') && | |
(contains(github.head_ref, 'dependabot/github_actions/') == false) | |
uses: mristin/[email protected] | |
with: | |
allow-one-liners: 'true' | |
# omit PR body as it is not part of our squashed commits | |
skip-body-check: 'true' | |
additional-verbs: 'notify, tidy' |