Allow users to specify prior process for row and column partitions #85
This file contains 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 for adhereance to keep-a-changelog' | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'CHANGELOG.md' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
brew install nbbrd/tap/heylogs | |
heylogs check CHANGELOG.md | tee heylogs.log | |
grep -i "No problem" heylogs.log |