Skip to content

Release v0.1.0-alpha3 #15

Release v0.1.0-alpha3

Release v0.1.0-alpha3 #15

Workflow file for this run

name: Require changelog
on:
pull_request:
types:
# On by default if types not specified:
- "opened"
- "reopened"
- "synchronize"
# For `skip-label` handling:
- "labeled"
- "unlabeled"
permissions:
pull-requests: write
jobs:
check-changelog:
name: Check for changelog
runs-on: ubuntu-latest
steps:
- name: Check
uses: brettcannon/[email protected]
with:
file-pattern: |
.changes/unreleased/*.yaml
CHANGELOG.md
skip-label: "skip changelog"
token: ${{ secrets.GITHUB_TOKEN }}
failure-message: >-
Missing a changelog file in ${file-pattern};
please add one or apply the ${skip-label} label to the pull request
if a changelog entry is not needed.