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