Skip to content

Enable python 3.12 testing in the CI, enable dependabot for CI workflow version checking #366

Enable python 3.12 testing in the CI, enable dependabot for CI workflow version checking

Enable python 3.12 testing in the CI, enable dependabot for CI workflow version checking #366

Workflow file for this run

name: Changelog
on:
pull_request:
types: [labeled, unlabeled, opened, synchronize, reopened]
branches:
- master
jobs:
changelog:
name: Confirm changelog entry
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Grep for PR number in CHANGES.rst
run: grep -P '\[[^\]]*#${{github.event.number}}[,\]]' CHANGES.rst
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-changelog-entry-needed') }}