Skip to content

Commit

Permalink
Merge branch 'main' into test-asv-pr
Browse files Browse the repository at this point in the history
  • Loading branch information
camposandro committed Nov 30, 2023
2 parents e8652cf + 4d32645 commit ecee52e
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/publish-comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,9 @@ jobs:
- name: Extract artifacts information
id: pr-info
run: |
pr_number=$(cat pr)
echo "PR number: $pr_number"
output_content=$(cat output)
echo "Output: $output_content"
echo "pr=$pr_number" >> $GITHUB_OUTPUT
echo "output=$output_content" >> $GITHUB_OUTPUT
echo "PR number: $(cat pr)"
echo "Output:\n $(cat output)"
echo "pr=$(cat pr)" >> $GITHUB_OUTPUT
- name: Find benchmarks comment
uses: peter-evans/find-comment@v2
id: find-comment
Expand All @@ -49,5 +46,5 @@ jobs:
with:
comment-id: ${{ steps.find-comment.outputs.comment-id }}
issue-number: ${{ steps.pr-info.outputs.pr }}
body-path: ${{ steps.pr-info.outputs.output }}
body-path: output
edit-mode: replace

0 comments on commit ecee52e

Please sign in to comment.