Skip to content

CI: Prevent FIXUP commits #3

CI: Prevent FIXUP commits

CI: Prevent FIXUP commits #3

Workflow file for this run

name: Check branch conformity
on:
push:
jobs:
prevent-fixup-commits:
runs-on: ubuntu-latest
env:
target: debian-bookworm
distro: debian
version: bookworm
steps:
- name: Checkout
uses: actions/checkout@v3
- name: preven fixup commits
run: |
git fetch origin
git diff origin/main HEAD | grep -i FIXUP && exit 1