From 016ef12c4a749d618adef4f05a860366fdd33ebd Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Wed, 6 Dec 2023 14:59:26 +0000 Subject: [PATCH] Fix "mark_skipped" action again Yet another go at this. The name is actually coming from an explicit `github-status-action` action in the called workflows. --- .github/workflows/cypress.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 00a616d1f..2e3cda189 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -70,7 +70,11 @@ jobs: authToken: "${{ secrets.GITHUB_TOKEN }}" state: success description: Cypress skipped + + # Keep in step with the `context` that is updated by `Sibz/github-status-action` + # in matrix-org/matrix-react-sdk/.github/workflows/cypress.yaml. context: "${{ github.workflow }} / cypress" + sha: "${{ github.event.workflow_run.head_sha }}" - uses: Sibz/github-status-action@071b5370da85afbb16637d6eed8524a06bc2053e # v1 @@ -78,5 +82,9 @@ jobs: authToken: "${{ secrets.GITHUB_TOKEN }}" state: success description: Playwright skipped - context: "${{ github.workflow }} / playwright" + + # Keep in step with the `context` that is updated by `Sibz/github-status-action` + # in matrix-org/matrix-react-sdk/.github/workflows/end-to-end-tests.yaml. + context: "${{ github.workflow }} / end-to-end-tests" + sha: "${{ github.event.workflow_run.head_sha }}"