Skip to content

ci: bump kaisugi/action-regex-match from 1.0.1 to 1.0.2 #5747

ci: bump kaisugi/action-regex-match from 1.0.1 to 1.0.2

ci: bump kaisugi/action-regex-match from 1.0.1 to 1.0.2 #5747

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
branches:
- main
types:
# title changes
- edited
# milestone changes
- milestoned
- demilestoned
# label changes for “no milestone”
- labeled
- unlabeled
# initial check
- opened
- edited
- reopened
# code change (e.g. this workflow)
- synchronize
jobs:
# This job verifies that the milestone is present or not necessary
# and determines if “check-relnotes” needs to be run.
check-milestone:
name: Check title, milestone, and labels
runs-on: ubuntu-latest
steps:
- name: Check if milestone or “no milestone” label is present
uses: flying-sheep/check@v1
with:
success: ${{ github.event.pull_request.user.login == 'pre-commit-ci[bot]' || github.event.pull_request.milestone != null || contains(github.event.pull_request.labels.*.name, 'no milestone') }}
- name: Check if the “Release notes” checkbox is checked and filled
uses: kaisugi/[email protected]
id: checked-relnotes
with:
text: ${{ github.event.pull_request.body }}
regex: '^\s*- \[x\].*Release notes.*not necessary because:(.*)$'
flags: m
- name: Check PR title
id: check-title
uses: amannn/action-semantic-pull-request@v6
env: # Needs repo options: “Squash and merge” with commit message set to “PR title”
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
outputs:
no-relnotes-reason: ${{ steps.checked-relnotes.outputs.group1 }}
type: ${{ steps.check-title.outputs.type }}
# This job verifies that the relevant release notes file has been modified.
check-relnotes:
name: Check for release notes
runs-on: ubuntu-latest
needs: check-milestone
if: github.event.pull_request.user.login != 'pre-commit-ci[bot]' && needs.check-milestone.outputs.no-relnotes-reason == '' && !contains(fromJSON('["style","refactor","test","build","ci"]'), needs.check-milestone.outputs.type)
steps:
- uses: actions/checkout@v6
with: { filter: 'blob:none', fetch-depth: 0 }
- name: Find out if a relevant release fragment is added
uses: dorny/paths-filter@v3
id: changes
with:
filters: | # this is intentionally a string
relnotes: 'docs/release-notes/${{ github.event.pull_request.number }}.*.md'
- name: Check if a relevant release fragment is added
uses: flying-sheep/check@v1
with:
success: ${{ steps.changes.outputs.relnotes }}