Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-12-06 13:33:27 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-12-06 13:38:19 +0300
commit59b59a4cfedba1705ce2bf6d04a779d3c0aa4ec2 (patch)
tree0cb32c3bc0517e07d28c07a4e8ebdf18eaa1f319 /.github
parente7221b1afae702e4bef6e4fac79b12da5f907034 (diff)
Use Github action to check for fixup commits
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/fixup.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/fixup.yml b/.github/workflows/fixup.yml
new file mode 100644
index 000000000..6b951bec9
--- /dev/null
+++ b/.github/workflows/fixup.yml
@@ -0,0 +1,13 @@
+on: pull_request
+
+name: Pull request checks
+
+jobs:
+ commit-message-check:
+ name: Block fixup and squash commits
+ runs-on: ubuntu-latest
+ steps:
+ - name: Run check
+ uses: xt0rted/block-autosquash-commits-action@master
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}