mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-16 11:53:13 +00:00
16 lines
421 B
YAML
16 lines
421 B
YAML
name: "Enforce Changelog"
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
|
|
|
|
jobs:
|
|
# Enforces the update of a changelog file on every pull request
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: dangoslen/changelog-enforcer@v1.6.1
|
|
with:
|
|
changeLogPath: 'CHANGELOG.md'
|
|
skipLabels: 'Skip-Changelog'
|