Skip to content

Commit

Permalink
Merge pull request #40 from Luap99/action-2
Browse files Browse the repository at this point in the history
Fix task name in github action
  • Loading branch information
openshift-merge-bot[bot] authored Nov 15, 2024
2 parents edb5b5f + 40883d5 commit b20bb89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr_image_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
run: |
ccirjson=$GITHUB_WORKSPACE/cirrus-ci_retrospective.json
prn=$(jq --raw-output \
'.[] | select(.name == "'success'") | .build.pullRequest' \
'.[] | select(.name == "Total Success") | .build.pullRequest' \
"$ccirjson")
bid=$(jq --raw-output \
'.[] | select(.name == "'success'") | .build.id' \
'.[] | select(.name == "Total Success") | .build.id' \
"$ccirjson")
status=$(jq --raw-output \
'.[] | select(.name == "'success'") | .status' \
'.[] | select(.name == "Total Success") | .status' \
"$ccirjson")
if [[ -n "$prn" ]] && \
Expand Down

0 comments on commit b20bb89

Please sign in to comment.