summaryrefslogtreecommitdiffstats
path: root/.github/workflows/changelog-enforcer.yml
blob: 025bdc58afb48d02cba2062dc50f4b8d6f8552ca (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
    - uses: dangoslen/changelog-enforcer@v2
      with:
        changeLogPath: 'CHANGELOG.md'
        skipLabels: 'Skip-Changelog'