diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-07 19:42:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-07 19:42:40 +0100 |
commit | da652ded26e5b6480047d29d6ae5f76b014774ec (patch) | |
tree | 53e6c64fa9428828d93b0a088ed82b3e23b8a5d0 /.github | |
parent | 5db40a37a14705f9d145a1262f06d6998da9e838 (diff) | |
download | nextcloud-server-da652ded26e5b6480047d29d6ae5f76b014774ec.tar.gz nextcloud-server-da652ded26e5b6480047d29d6ae5f76b014774ec.zip |
Move fixup check to action
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/fixup.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/fixup.yml b/.github/workflows/fixup.yml new file mode 100644 index 00000000000..48ffcfd2a93 --- /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@main + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} |