From f58f61f70f19aaf560b4ce5bf8a51cbf98b2639c Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Tue, 7 May 2024 16:38:18 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=80=EF=B8=8F=20Add?= =?UTF-8?q?=20`success`=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54c8113..11fe184 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,3 +48,14 @@ jobs: run: ./release.sh env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # A silly job just so we can mark this as the required check for PRs + # instead of maintaining the full list of matrix jobs + success: + needs: + - build + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Success + run: echo "Success"