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

github.com/nextcloud/calendar.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-05-19 11:04:36 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-05-19 11:04:36 +0300
commit2911011d410dba91f752cfaeefe503ac204d5f65 (patch)
tree856422fc41de4e148dd4f6c3356f1f0f099016ed /.github
parente1c3dcb09b7e75e73840c693992c8c5e1fce5ec2 (diff)
Replace the fixup bot with a github action
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/fixup.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/fixup.yml b/.github/workflows/fixup.yml
new file mode 100644
index 00000000..c2be8234
--- /dev/null
+++ b/.github/workflows/fixup.yml
@@ -0,0 +1,11 @@
+on: pull_request
+name: Commit 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@main
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}