From 84d193a9a2ffe024a0fa4aff0a57166181746d6f Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Wed, 6 Dec 2023 14:53:11 +0000 Subject: [PATCH] Fix "mark_skipped" action again Turns out that the name we need is the key of the job in the workflow definition; *not* the `name` property. --- .github/workflows/cypress.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index f77d5af37..00a616d1f 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -70,7 +70,7 @@ jobs: authToken: "${{ secrets.GITHUB_TOKEN }}" state: success description: Cypress skipped - context: "${{ github.workflow }} / Cypress" + context: "${{ github.workflow }} / cypress" sha: "${{ github.event.workflow_run.head_sha }}" - uses: Sibz/github-status-action@071b5370da85afbb16637d6eed8524a06bc2053e # v1 @@ -78,5 +78,5 @@ jobs: authToken: "${{ secrets.GITHUB_TOKEN }}" state: success description: Playwright skipped - context: "${{ github.workflow }} / Playwright" + context: "${{ github.workflow }} / playwright" sha: "${{ github.event.workflow_run.head_sha }}"