Skip to content

chore(deps): update github-actions #285

chore(deps): update github-actions

chore(deps): update github-actions #285

name: References pre submits
on:
pull_request:
types: [opened, edited, reopened, synchronize]
permissions: read-all
jobs:
check-docs:
runs-on: ubuntu-latest
if: ${{ contains(github.event.pull_request.body, '#label:release') }}
env:
BODY: ${{ github.event.pull_request.body }}
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Check documentation is up-to-date
run: |
RELEASE_TAG=$(:
echo "$BODY" |
grep -oE '^[[:blank:]]*#label:release[[:blank:]]+v?[0-9]+\.[0-9]+\.[0-9]+' |
sed -E 's/.*([0-9]+\.[0-9]+\.[0-9])/\1/'
)
if [[ -z "$RELEASE_TAG" ]]; then
echo 'Invalid release PR body. Must include `#label:release vX.Y.Z`'
exit 1
fi
RELEASE_TAG="${RELEASE_TAG}" ./.github/workflows/scripts/pre-release/references.sh