Change zero
documentation mentions of genre to genres
#200
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: Verify changelog updated | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- ready_for_review | |
jobs: | |
check_changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get all updated Python files | |
id: changed-python-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
**.py | |
- name: Check for the changelog update | |
id: changelog-update | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: docs/changelog.rst | |
- name: Comment under the PR with a reminder | |
if: steps.changed-python-files.outputs.any_changed == 'true' && steps.changelog-update.outputs.any_changed == 'false' | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: 'Thank you for the PR! The changelog has not been updated, so here is a friendly reminder to check if you need to add an entry.' | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' |