Skip to content

Commit

Permalink
Fix label in PR validation comparison plots (try 2) (#1583)
Browse files Browse the repository at this point in the history
ix label in PR validation comparison plots (try 2)
  • Loading branch information
tvami authored Feb 7, 2025
1 parent cf851e2 commit 263751d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@ jobs:
matrix: ${{fromJson(needs.compile-ldmx-sw.outputs.job_matrix)}}
fail-fast: false
steps:

- name: Get PR Info for Validation job
id: get_pr_again
if: github.event_name == 'issue_comment'
run: |
PR_DATA=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.issue.number }}")
HEAD_REF=$(echo "$PR_DATA" | jq -r .head.ref)
echo "HEAD_REF=$HEAD_REF" >> $GITHUB_ENV
- name: Download ldmx-sw Package
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 263751d

Please sign in to comment.