Skip to content

Commit

Permalink
ci: Add CICD result feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Koenig <okoenig@nvidia.com>
  • Loading branch information
ko3n1g committed Sep 26, 2024
1 parent dcc3a16 commit a62bb33
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cicd-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5377,6 +5377,24 @@ jobs:
- if: ${{ always() && steps.pipeline-conclusion.outputs.SUCCESS == 'true' }}
run: exit 0

- if: ${{ always() && steps.pipeline-conclusion.outputs.SUCCESS == 'true' && github.event_name == 'pull_request' }}
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ github.event.number }}
body: |
[🤖]: Hi @${{ github.event.pull_request.user.login }} 👋,
I just wanted to let you know that, you know, the CICD pipeline for this PR
just finished successfully ✨
So it might be time to merge this PR or like to get some approvals 🚀
But I'm just a 🤖 so I'll leave it you what to do next.
Have a great day!
//cc @ko3n1g
- if: ${{ always() && steps.pipeline-conclusion.outputs.FAILED == 'true' }}
name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit a62bb33

Please sign in to comment.