From c78dcafb7558e8282c98c8fe7e26531c5efe74dd Mon Sep 17 00:00:00 2001 From: Benjamin Morgan Date: Thu, 28 Mar 2024 09:10:56 +0100 Subject: [PATCH] ci: Add check to ensure that fixup commits are merged --- .github/workflows/check-commits.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/check-commits.yml diff --git a/.github/workflows/check-commits.yml b/.github/workflows/check-commits.yml new file mode 100644 index 000000000..dc702f748 --- /dev/null +++ b/.github/workflows/check-commits.yml @@ -0,0 +1,13 @@ +--- +name: Git Checks + +on: [pull_request] + +jobs: + block-fixup: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Ensure !fixup commits are merged + uses: 13rac1/block-fixup-merge-action@v2.0.0