mirror-chatterino2/.github/workflows/changelog-category-check.yml
pajlada 83328e7de5
Add the Changelog Category Check workflow (#4821)
This ensures the changelog entry added, if any, is under the Unreleased category

This action can be skipped with the `skip-changelog-check` label
2023-09-16 17:41:53 +00:00

34 lines
863 B
YAML

---
name: Changelog Category Check
on:
pull_request:
types:
- labeled
- unlabeled
- opened
- synchronize
- reopened
jobs:
changelog-category-check:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
id: label-checker
with:
result-encoding: "string"
script: |
const response = await github.rest.issues.listLabelsOnIssue({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo
});
if (new Set(response.data.map(label => label.name)).has("skip-changelog-checker")) {
return "skip";
}
return "";
- uses: pajlads/changelog-checker@v1.0.0
if: steps.label-checker.outputs.result != 'skip'