Skip to content

Commit

Permalink
github: do not allow FIXMEs in the changelog
Browse files Browse the repository at this point in the history
This will hard block us if we forget these in the future.

Signed-off-by: Austin Seipp <[email protected]>
Change-Id: I04c48eada81378add1ac7f2171f7c6430d549427
  • Loading branch information
thoughtpolice committed May 31, 2024
1 parent fd04341 commit baf3f50
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/misc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Miscellaneous tasks

on:
push:
branches:
- main
pull_request:

permissions: read-all

jobs:
no_changelog_fixme:
name: No FIXMEs in Changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: grep -zqv FIXME CHANGELOG.md

0 comments on commit baf3f50

Please sign in to comment.