|
40 | 40 | comment-author: 'github-actions[bot]' |
41 | 41 | body-includes: "<!-- pr-comment -->" |
42 | 42 |
|
43 | | - # If 'requested' |
| 43 | + # If 'pr' workflow run was 'requested'... |
44 | 44 | - if: github.event.action == 'requested' |
45 | | - name: If 'requested' - Update Comment |
| 45 | + name: PR workflow started - Update Comment |
46 | 46 | uses: peter-evans/create-or-update-comment@v5 |
47 | 47 | with: |
48 | 48 | issue-number: ${{ steps.pr-context.outputs.number }} |
|
52 | 52 | <!-- pr-comment --> |
53 | 53 | Waiting for [build job](https://github.com/${{github.repository}}/actions/runs/${{github.event.workflow_run.id}}) (at ${{ github.event.workflow_run.head_sha }})... |
54 | 54 |
|
55 | | - # If 'completed' |
| 55 | + # If 'pr' workflow run was 'completed'... |
56 | 56 | - if: github.event.action == 'completed' |
57 | | - name: If 'completed' - Download pr-comment-body.txt |
| 57 | + name: PR workflow completed - Download pr-comment-body.txt |
58 | 58 | uses: actions/download-artifact@v4 |
59 | 59 | continue-on-error: true |
60 | 60 | with: |
|
63 | 63 | run-id: ${{ github.event.workflow_run.id }} |
64 | 64 | name: pr-comment-body.txt |
65 | 65 | - if: github.event.action == 'completed' |
66 | | - name: If 'completed' - Create pr-comment.txt |
| 66 | + name: PR workflow completed - Create pr-comment.txt |
67 | 67 | env: |
68 | 68 | REPO: ${{github.repository}} |
69 | 69 | RUN_ID: ${{github.event.workflow_run.id}} |
|
85 | 85 | fi |
86 | 86 | ) > pr-comment.txt |
87 | 87 | - if: github.event.action == 'completed' |
88 | | - name: If 'completed' - Update Comment |
| 88 | + name: PR workflow completed - Update Comment |
89 | 89 | uses: peter-evans/create-or-update-comment@v5 |
90 | 90 | with: |
91 | 91 | issue-number: ${{ steps.pr-context.outputs.number }} |
|
0 commit comments