summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-13 12:56:54 +0200
committerGitHub <noreply@github.com>2021-04-13 12:56:54 +0200
commitfd5c87a78e335097a1f714ec5a5a76ee79dd83cf (patch)
treeaf4bf3fae0a8d825c20761ccd05cbd1aa474696c
parenteeede736521f9069e0dd8cb17da064ada1fbb534 (diff)
parent63a6f2b3e5bcf91e34ae507876c260b791cd0c37 (diff)
Merge pull request #195 from matthiasbeyer/actions-block-fixup-merge
Add workflow to block merges with fixup commits
-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