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