Skip to content

Commit

Permalink
Add keep a changelog enforcer
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Nov 6, 2024
1 parent c47f69a commit 01b0141
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/keep_a_changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Changelog Reminder"
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@v4
- uses: dangoslen/changelog-enforcer@v3
with:
changeLogPath: "CHANGELOG.md"
skipLabels: "Skip-Changelog"

0 comments on commit 01b0141

Please sign in to comment.