Skip to content

Commit

Permalink
ci: Add changelog linter
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidmt committed Oct 16, 2023
1 parent b81fadb commit 47988ef
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Check changelog for adhereance to keep-a-changelog'

on:
workflow_dispatch:
pull_request:
paths:
- 'CHANGELOG.md'

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- run:|
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install nbbrd/tap/heylogs

- run: heylogs check CHANGELOG.md | grep -iv error

0 comments on commit 47988ef

Please sign in to comment.