summaryrefslogtreecommitdiffstats
path: root/.github/workflows/fixupmerge.yml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-01 16:58:58 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-04-01 16:58:58 +0200
commit63a6f2b3e5bcf91e34ae507876c260b791cd0c37 (patch)
treeb5f28cc09deddd2eae2ce3a6c37d8e04fd1c9e33 /.github/workflows/fixupmerge.yml
parente8dccf2850bc5ca7952cd267745ee3f2afa4d744 (diff)
Add workflow to block merges with fixup commits
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to '.github/workflows/fixupmerge.yml')
-rw-r--r--.github/workflows/fixupmerge.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/fixupmerge.yml b/.github/workflows/fixupmerge.yml
new file mode 100644
index 0000000..a736dcd
--- /dev/null
+++ b/.github/workflows/fixupmerge.yml
@@ -0,0 +1,12 @@
+on: [pull_request]
+
+name: Git Checks
+
+jobs:
+ block-fixup:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2.0.0
+ - name: Block Fixup Commit Merge
+ uses: 13rac1/block-fixup-merge-action@v2.0.0