From 6baad6f9330109b590fdbc68f6dbbd728416d69b Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Fri, 10 Jan 2025 17:31:51 +0100 Subject: [PATCH] Add one job to mark as required for PRs --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faaf930..da71d4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,3 +53,14 @@ jobs: - run: cargo clippy -- --deny warnings - run: cargo clippy -- --deny warnings working-directory: test-flip-link-app/ + + ci-success: + name: CI finished successfully + runs-on: ubuntu-latest + if: success() + needs: + - test + - static-checks + steps: + - name: Mark the build as successful + run: exit 0