mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
9cca310e40
Bumps [dangoslen/changelog-enforcer](https://github.com/dangoslen/changelog-enforcer) from v1.6.1 to v2. - [Release notes](https://github.com/dangoslen/changelog-enforcer/releases) - [Changelog](https://github.com/dangoslen/changelog-enforcer/blob/master/CHANGELOG.md) - [Commits](https://github.com/dangoslen/changelog-enforcer/compare/v1.6.1...48475fe18184740cfbf6cd48cb62d3428ab301dd) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
528 B
YAML
20 lines
528 B
YAML
name: Changelog Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
|
|
|
|
jobs:
|
|
check-changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
# Gives an error if there's no change in the changelog (except using label)
|
|
- name: Changelog check
|
|
uses: dangoslen/changelog-enforcer@v2
|
|
with:
|
|
changeLogPath: 'CHANGELOG.md'
|
|
skipLabels: 'no changelog entry needed, ci, submodules'
|