Skip to content

Commit

Permalink
add CI to enforce changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi committed Jan 27, 2025
1 parent fc9694b commit 3b35d75
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/Changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Enforces the update of a changelog file on every pull request
# Can be skipped with the `Skip Changelog` label
name: Changelog Update Check
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]

jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: dangoslen/changelog-enforcer@v3
with:
skipLabels: 'Skip Changelog'

0 comments on commit 3b35d75

Please sign in to comment.