summaryrefslogtreecommitdiffstats
path: root/.github/workflows/changelog-enforcer.yml
blob: 6fcf6fdef3f786b2308ca4dc7a06fe75c05609cc (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@v1.4.0
      with:
        changeLogPath: 'CHANGELOG.md'
        skipLabel: 'Skip-Changelog'