diff options
Diffstat (limited to 'lib/mlibc/.github/workflows/fixups.yml')
-rw-r--r-- | lib/mlibc/.github/workflows/fixups.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/mlibc/.github/workflows/fixups.yml b/lib/mlibc/.github/workflows/fixups.yml new file mode 100644 index 0000000..08bdf93 --- /dev/null +++ b/lib/mlibc/.github/workflows/fixups.yml @@ -0,0 +1,24 @@ +name: Check if PR has fixups + +on: + pull_request: + +jobs: + find-fixups: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - run: | + set -e -o pipefail + + git rev-list 'HEAD^..HEAD' \ + | while read -r COMMIT; do + printf 'pondering commit %s\n' "$COMMIT" + git show -s "$COMMIT" + if git show -s --format='%s' "$COMMIT" | grep -q '^fixup! '; then + exit 1 + fi + done + printf 'ready to merge!\n' |