Skip to content

Commit

Permalink
Update benchmarks.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Sameer Srivastava <[email protected]>
  • Loading branch information
itsmesamster authored Aug 12, 2024
1 parent a9a3dc7 commit 5005d06
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ jobs:
- name: Set PR details
if: github.event_name == 'workflow_dispatch'
run: |
PR_OWNER=$(echo '${{ steps.pr_details.outputs.result }}' | jq -c . | jq -r .data.head.repo.owner.login);
PR_REPO=$(echo '${{ steps.pr_details.outputs.result }}' | jq -c . | jq -r .data.head.repo.name);
result=$(echo '${{ steps.pr_details.outputs.result }}' | jq -c . );
echo "result is $result";
PR_OWNER=$(echo "$result" | jq -r .data.head.repo.owner.login);
PR_REPO=$(echo "$result" | jq -r .data.head.repo.name);
echo "owner is $PR_OWNER";
echo "repo is $PR_REPO";
echo "PR_OWNER=$PR_OWNER" >> $GITHUB_ENV
Expand Down

0 comments on commit 5005d06

Please sign in to comment.