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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2021-08-11 11:41:04 +0300
committerGitHub <noreply@github.com>2021-08-11 11:41:04 +0300
commit19dda8e4822e9c1e6bf0a5ffb9bb3c7f19d32061 (patch)
tree6926bc5478148b7a44ef4c9233f74ee3806682ce /.github
parentc38ccb7c7865a683fd8dd9a10790d68d7209cb5a (diff)
Create fixup.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/fixup.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/fixup.yml b/.github/workflows/fixup.yml
new file mode 100644
index 00000000..6092cc3a
--- /dev/null
+++ b/.github/workflows/fixup.yml
@@ -0,0 +1,20 @@
+# This workflow is provided via the organization template repository
+#
+# https://github.com/nextcloud/.github
+# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
+
+name: Pull request checks
+
+on: pull_request
+
+jobs:
+ commit-message-check:
+ name: Block fixup and squash commits
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Run check
+ uses: xt0rted/block-autosquash-commits-action@v2
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}