Skip to content

chore(deps): bump codecov/codecov-action from 5.0.2 to 5.0.6 #102

chore(deps): bump codecov/codecov-action from 5.0.2 to 5.0.6

chore(deps): bump codecov/codecov-action from 5.0.2 to 5.0.6 #102

Workflow file for this run

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