No Towncrier requirement for dependabot #131
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: Pull Request requires towncrier file | |
on: | |
- pull_request | |
jobs: | |
pr_require_towncrier_file: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ensure towncrier file exists | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
run: | | |
# Allow dependabot PRs to skip this check. | |
if [ "${{ github.actor }}" == "dependabot" ]; then | |
exit 0 | |
fi | |
if [ ! -f "changes/${PR_NUMBER}.feature" ] && [ ! -f "changes/${PR_NUMBER}.bugfix" ] && [ ! -f "changes/${PR_NUMBER}.doc" ] && [ ! -f "changes/${PR_NUMBER}.removal" ] && [ ! -f "changes/${PR_NUMBER}.misc" ]; then | |
echo "Towncrier file for #${PR_NUMBER} not found. Please add a changes file to the `changes/` directory. See README.rst for more information." | |
exit 1 | |
fi |