Skip to content

Commit 79fb3b8

Browse files
committed
ci: Quote Vercel status name in GitHub workflows
1 parent f0c480c commit 79fb3b8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: always()
3434
uses: 'vercel/repository-dispatch/actions/status@v1'
3535
with:
36-
name: Vercel - parked-domain: build
36+
name: "Vercel - parked-domain: build"
3737
token: ${{ secrets.GITHUB_TOKEN }}
3838
sha: ${{ github.event.client_payload.git.sha || github.sha }}
3939
state: ${{ job.status == 'success' && 'success' || job.status == 'failure' && 'failure' || 'error' }}

.github/workflows/review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: always()
2727
uses: 'vercel/repository-dispatch/actions/status@v1'
2828
with:
29-
name: Vercel - parked-domain: review
29+
name: "Vercel - parked-domain: review"
3030
token: ${{ secrets.GITHUB_TOKEN }}
3131
sha: ${{ github.event.client_payload.git.sha || github.sha }}
3232
state: ${{ job.status == 'success' && 'success' || 'failure' }}

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: always()
2727
uses: 'vercel/repository-dispatch/actions/status@v1'
2828
with:
29-
name: Vercel - parked-domain: unit-test
29+
name: "Vercel - parked-domain: unit-test"
3030
token: ${{ secrets.GITHUB_TOKEN }}
3131
sha: ${{ github.event.client_payload.git.sha || github.sha }}
3232
state: ${{ job.status == 'success' && 'success' || job.status == 'failure' && 'failure' || 'error' }}

0 commit comments

Comments
 (0)