ci: add GitHub Action to check CHANGELOG consistency with PRs #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Changelog | |
on: | |
push: | |
paths: | |
- 'CHANGELOG.md' | |
- 'ci/check_changelog_prs.ts' | |
pull_request: | |
paths: | |
- 'CHANGELOG.md' | |
- 'ci/check_changelog_prs.ts' | |
jobs: | |
check-changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Run check_changelog_prs script | |
working-directory: ci | |
run: bun run check_changelog_prs.ts |