Skip to content

Commit

Permalink
ci: check if PR updated changelog
Browse files Browse the repository at this point in the history
Add a new CI workflow that checks whether a PR targeting the main branch
modified the CHANGELOG.md file. This can be disabled by using the "no
changelog" tag when opening the PR
  • Loading branch information
torives committed Aug 25, 2023
1 parent 2a28301 commit 4197eaf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/changelog-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check Changelog

on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
branches:
- main

jobs:
check-changelog:
runs-on: ubuntu-22.04

steps:
- uses: tarides/changelog-check-action@v2
with:
changelog: CHANGELOG.md


0 comments on commit 4197eaf

Please sign in to comment.