Skip to content

!fixup: put on the mac section, and update the sign-assets.py script #776

!fixup: put on the mac section, and update the sign-assets.py script

!fixup: put on the mac section, and update the sign-assets.py script #776

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@v4
- name: prevent fixup commits
run: |
git fetch origin
git status
git log --pretty=format:%s origin/main..HEAD | grep -ie '^fixup\|^wip' && exit 1 || true