Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Sep 25, 2024
1 parent 7842bc9 commit 90ba76e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
repository: ${{ env.SOURCE_REPO_OWNER }}/${{ env.SOURCE_REPO_NAME }}
ref: ${{ github.event.client_payload.merge_commit_sha || github.event.client_payload.head_sha }}
submodules: recursive

- name: Test
id: test
run: |
Expand All @@ -75,8 +75,8 @@ jobs:
owner: process.env.SOURCE_REPO_OWNER,
repo: process.env.SOURCE_REPO_NAME,
sha: context.payload.client_payload.head_sha,
state: '${{ steps.test.outcome == 'success' && 'success' || 'failure' }}',
description: '${{ steps.test.outcome == 'success' && 'Successful' || 'Failed' }}',
state: "${{ steps.test.outcome == 'success' && 'success' || 'failure' }}",
description: "${{ steps.test.outcome == 'success' && 'Successful' || 'Failed' }}",
target_url: process.env.RUN_URL,
context: context.payload.action,
})

0 comments on commit 90ba76e

Please sign in to comment.