Skip to content

Build(deps): Bump keystoneauth1 from 5.6.0 to 5.8.0 #2977

Build(deps): Bump keystoneauth1 from 5.6.0 to 5.8.0

Build(deps): Bump keystoneauth1 from 5.6.0 to 5.8.0 #2977

Workflow file for this run

name: bandersnatch_changelog
on:
pull_request:
types: [opened, synchronize, labeled, unlabeled, reopened]
jobs:
build:
name: Changelog Entry Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Grep CHANGES.md for PR number
if: contains(github.event.pull_request.labels.*.name, 'skip news') != true
run: |
grep -P "PR #${{ github.event.pull_request.number }}[^0-9]" CHANGES.md || \
(echo "Please add 'PR #${{ github.event.pull_request.number }}' change line to CHANGES.md" && \
exit 1)