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.
This commit is contained in:
Richard van der Hoff
2023-12-06 14:53:11 +00:00
parent 9d5f1bb4fc
commit 84d193a9a2
+2 -2
View File
@@ -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 }}"