From c00d758995d909de6c46201cec81f2499c9e53ab Mon Sep 17 00:00:00 2001 From: Dawid Heyman Date: Thu, 12 Oct 2023 14:42:53 +0200 Subject: [PATCH] SNOW-859636 Excluded codecod[bot] from Jira comment action --- .github/workflows/jira_comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jira_comment.yml b/.github/workflows/jira_comment.yml index ff647ade0..b021a2925 100644 --- a/.github/workflows/jira_comment.yml +++ b/.github/workflows/jira_comment.yml @@ -23,7 +23,7 @@ jobs: echo ::set-output name=jira::$jira - name: Comment on issue uses: atlassian/gajira-comment@master - if: startsWith(steps.extract.outputs.jira, 'SNOW-') + if: startsWith(steps.extract.outputs.jira, 'SNOW-') && github.event.comment.user.login != 'codecov[bot]' with: issue: "${{ steps.extract.outputs.jira }}" comment: "${{ github.event.comment.user.login }} commented:\n\n${{ github.event.comment.body }}\n\n${{ github.event.comment.html_url }}"