-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24c35a4
commit 09d6bec
Showing
2 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Comment on PR | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Build/Test for PR and collaborator push"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
pr-comment: | ||
runs-on: ubuntu-latest | ||
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' | ||
steps: | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
run-id: ${{ github.event.workflow_run.id }} | ||
merge-multiple: true | ||
|
||
- name: Merge artifacts and get PR number | ||
run: | | ||
echo "### Build Status Report" > artifacts_merged.md | ||
cat ./*.txt >> artifacts_merged.md | ||
echo "PR_NUMBER=$(cat pr_number)" >> "$GITHUB_ENV" | ||
- name: PR Comment | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
pr_number: ${{ env.PR_NUMBER }} | ||
comment_tag: build_status_report | ||
filePath: artifacts_merged.md |