summaryrefslogtreecommitdiffstats
path: root/.github/workflows/changelog-enforcer.yml
blob: b7140c344c011c41ace0dd097e2739b41d59e8ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: "Changelog Enforcer"
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.3.4
    - uses: dangoslen/changelog-enforcer@v2.2.0
      with:
        changeLogPath: 'CHANGELOG.md'
        skipLabels: 'Skip-Changelog'