Skip to content

fix SonarQube issues #505

fix SonarQube issues

fix SonarQube issues #505

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@v4
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') }}