diff --git a/.github/workflows/pull-request-develop.yml b/.github/workflows/pull-request-develop.yml index 3e0fe02d3..3c880fb2a 100644 --- a/.github/workflows/pull-request-develop.yml +++ b/.github/workflows/pull-request-develop.yml @@ -5,6 +5,17 @@ name: "Validate PRs to develop" on: [pull_request] jobs: + # Checks if the PR has a changelog entry, and fails if not. + # Apply a label named no changelog to the PR to skip the check + Check-Changelog: + name: Check Changelog Action + runs-on: ubuntu-latest + steps: + - uses: tarides/changelog-check-action@v2 + with: + changelog: CHANGELOG.md + + # Installs npm dependencies for the first time, # caching them in ~/.npm install: