mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
20 lines
515 B
YAML
20 lines
515 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@v1.5.1
|
||
|
with:
|
||
|
changeLogPath: 'CHANGELOG.md'
|
||
|
skipLabel: 'no changelog entry needed'
|