chore(pre-commit): update to ggshield 1.31.0 #218
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
# This workflow only accepts PRs if they either contain a changelog fragment, | |
# or have been applied the `skip-changelog` label. | |
name: Changelog check | |
on: | |
pull_request: | |
types: | |
# On by default if you specify no types. | |
- 'opened' | |
- 'reopened' | |
- 'synchronize' | |
# For `skip-changelog` only. | |
- 'labeled' | |
- 'unlabeled' | |
jobs: | |
check-changelog: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 'Check for changelog fragment' | |
uses: brettcannon/[email protected] | |
with: | |
file-pattern: | | |
changelog.d/*.md | |
CHANGELOG.md | |
skip-label: 'skip-changelog' | |
failure-message: 'Missing a changelog fragment in ${file-pattern}. Please add one using `scriv create` or apply the `${skip-label}` label to the pull request' |