Skip to content

Bump keystoneauth1 from 5.5.0 to 5.6.0 #2736

Bump keystoneauth1 from 5.5.0 to 5.6.0

Bump keystoneauth1 from 5.5.0 to 5.6.0 #2736

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)