From 396a8467c39ee0934093cdac83bf7b035308b9a9 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 18 Jan 2024 16:27:27 -0800 Subject: [PATCH] CI: Add a "Complete" job for branch protection --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37ced3c..81014e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ on: branches: [ master ] pull_request: branches: [ master ] + merge_group: name: CI @@ -68,3 +69,10 @@ jobs: - name: Clippy run: cargo clippy # -- -D warnings + + done: + name: Complete + runs-on: ubuntu-latest + needs: [ci, clippy] + steps: + - run: exit 0