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 bbdd720
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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
heylogs check CHANGELOG.md | grep -iv error

0 comments on commit bbdd720

Please sign in to comment.