diff options
author | 2023-08-24 16:33:12 +0200 | |
---|---|---|
committer | 2023-08-24 15:33:12 +0100 | |
commit | 6d96785ea3a1343999c8cbd772ef67ab48780e5b (patch) | |
tree | be00d86f1269bdb5da78a50622cb5b2a2582cce9 | |
parent | Add meeting notes for today (diff) |
Invoke the workflow that checks for fixup commits (#130)
-rw-r--r-- | .github/workflows/block-fixup-commits.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/block-fixup-commits.yaml b/.github/workflows/block-fixup-commits.yaml new file mode 100644 index 0000000..ca90a3d --- /dev/null +++ b/.github/workflows/block-fixup-commits.yaml @@ -0,0 +1,13 @@ +name: Block fixup commits + +on: + pull_request_target: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + block-fixup-commits: + if: github.ref != 'refs/heads/main' + uses: python-discord/.github/.github/workflows/block-fixup-commits.yaml@main |