chore(deps): update types-croniter requirement from <5,>=3.0.0.20240727 to >=3.0.0.20240727,<6 #109
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: Fragment Check | |
on: [pull_request] | |
jobs: | |
fragment-check: | |
name: Fragment check | |
runs-on: ubuntu-latest | |
if: github.actor != 'dependabot[bot]' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check changelog fragment exists | |
run: | | |
PR_NUMBER=${{ github.event.number }} | |
if [ -n "$(compgen -G "fragments/${PR_NUMBER}.*.md")" ]; then | |
echo "Fragment exists" | |
exit 0 | |
fi | |
echo "Fragment does not exist" | |
exit 1 |