fix indentation of line breaks in long type hints by adding parens #3707
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: changelog | |
on: | |
pull_request: | |
types: [opened, synchronize, labeled, unlabeled, reopened] | |
permissions: | |
contents: read | |
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 -Pz "\((\n\s*)?#${{ github.event.pull_request.number }}(\n\s*)?\)" CHANGES.md || \ | |
(echo "Please add '(#${{ github.event.pull_request.number }})' change line to CHANGES.md (or if appropriate, ask a maintainer to add the 'skip news' label)" && \ | |
exit 1) |