diff --git a/.github/workflows/cake_wallet.yaml b/.github/workflows/cake_wallet.yaml index 1fe08e93..e22f210e 100644 --- a/.github/workflows/cake_wallet.yaml +++ b/.github/workflows/cake_wallet.yaml @@ -212,10 +212,18 @@ jobs: body-includes: download cake_wallet - name: Create or update comment + if: steps.fc.outcome == 'success' uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | [download cake_wallet #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) - edit-mode: replace \ No newline at end of file + edit-mode: replace + - name: Create comment + if: steps.fc.outcome == 'failure' + uses: peter-evans/create-or-update-comment@v4 + with: + issue-number: ${{ github.event.pull_request.number }} + body: | + [download cake_wallet #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) (this comment will update whenever you push) \ No newline at end of file diff --git a/.github/workflows/compat.yaml b/.github/workflows/compat.yaml index ad288ce3..fca7c74b 100644 --- a/.github/workflows/compat.yaml +++ b/.github/workflows/compat.yaml @@ -476,11 +476,19 @@ jobs: issue-number: ${{ github.event.pull_request.number }} comment-author: 'github-actions[bot]' body-includes: download libraries - - name: Create or update comment + - name: Update comment + if: steps.fc.outcome == 'success' uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | [download libraries #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) - edit-mode: replace \ No newline at end of file + edit-mode: replace + - name: Create comment + if: steps.fc.outcome == 'failure' + uses: peter-evans/create-or-update-comment@v4 + with: + issue-number: ${{ github.event.pull_request.number }} + body: | + [download libraries #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) (this comment will update whenever you push) \ No newline at end of file diff --git a/.github/workflows/xmruw.yaml b/.github/workflows/xmruw.yaml index 4d4ae1de..4dd27436 100644 --- a/.github/workflows/xmruw.yaml +++ b/.github/workflows/xmruw.yaml @@ -69,11 +69,19 @@ jobs: comment-author: 'github-actions[bot]' body-includes: download xmruw - - name: Create or update comment + - name: Update comment + if: steps.fc.outcome == 'success' uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | [download xmruw #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) - edit-mode: replace \ No newline at end of file + edit-mode: replace + - name: Create comment + if: steps.fc.outcome == 'failure' + uses: peter-evans/create-or-update-comment@v4 + with: + issue-number: ${{ github.event.pull_request.number }} + body: | + [download xmruw #${{github.run_id}}](https://nightly.link/MrCyjaneK/monero_c/actions/runs/${{github.run_id}}) (this link will update whenever you push) \ No newline at end of file