Skip to content

Commit

Permalink
test: Fix bug in responding with commit status on success (aws#4123)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-innis authored Jun 23, 2023
1 parent c662e41 commit 7657e82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/e2e/commit-status/end/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ runs:
github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
context: "${{ github.workflow }} / e2e (${{ inputs.suite }}) / ${{ github.job }}",
context: "${{ github.workflow }} / e2e (${{ inputs.suite }}) / ${{ github.job }} (snapshot)",
sha: "${{ inputs.git_ref }}",
state: "success",
target_url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (snapshot)",
target_url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
});
- uses: actions/github-script@v6
if: job.status == 'failure' || job.status == 'cancelled'
Expand Down

0 comments on commit 7657e82

Please sign in to comment.