build(deps): bump frequenz-floss/gh-action-setup-python-with-deps from 0d0d77eac3b54799f31f25a1060ef2c6ebdf9299 to e4d0b2ef8f5a1612d7827f3abaef17c931d2b946 #1743
Workflow file for this run
This file contains hidden or 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: Release Notes Check | |
| on: | |
| merge_group: | |
| pull_request: | |
| types: | |
| # On by default if you specify no types. | |
| - "opened" | |
| - "reopened" | |
| - "synchronize" | |
| # For `skip-label` only. | |
| - "labeled" | |
| - "unlabeled" | |
| jobs: | |
| check-release-notes: | |
| name: Check release notes are updated | |
| runs-on: ubuntu-slim | |
| permissions: | |
| # Read pull request metadata to evaluate labels and changed files. | |
| pull-requests: read | |
| steps: | |
| - name: Check for a release notes update | |
| if: github.event_name == 'pull_request' | |
| uses: brettcannon/check-for-changed-files@871d7b8b5917a4f6f06662e2262e8ffc51dff6d1 # v1.2.1 | |
| with: | |
| file-pattern: "RELEASE_NOTES.md" | |
| prereq-pattern: "{src,cookiecutter}/**" | |
| skip-label: "cmd:skip-release-notes" | |
| failure-message: "Missing a release notes update. Please add one or apply the ${skip-label} label to the pull request" |