mirror-chatterino2/.github/workflows/changelog-check.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
489 B
YAML
Raw Permalink Normal View History

2020-12-06 13:14:40 +01:00
name: Changelog Check
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
2020-12-06 13:14:40 +01:00
jobs:
check-changelog:
runs-on: ubuntu-latest
steps:
# Gives an error if there's no change in the changelog (except using label)
- name: Changelog check
uses: dangoslen/changelog-enforcer@v3
2020-12-06 13:14:40 +01:00
with:
changeLogPath: "CHANGELOG.md"
skipLabels: "no changelog entry needed, ci, submodules"