From b4ca00ed6e6a2a01bacbd1fb5013c66c4d06c58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez=20Mor=C3=B3n?= Date: Mon, 25 Jul 2022 12:38:35 +0200 Subject: [PATCH] Fix/comments movements (#643) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Automated PRs created by the bitnami-bot should be ignored by any workflow related to support activities. Signed-off-by: Alejandro Gómez * Fixing the race condition only to exclude bitnami-bot ON auto-merge PRs Signed-off-by: Alejandro Gómez --- .github/workflows/comments.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/comments.yml b/.github/workflows/comments.yml index 3b7fc8bbd3b6..69a6768573d5 100644 --- a/.github/workflows/comments.yml +++ b/.github/workflows/comments.yml @@ -14,7 +14,7 @@ concurrency: jobs: comments_handler: - if: ${{ github.actor != 'bitnami-bot' && ((github.event.pull_request && (!contains(github.event.pull_request.labels.*.name, 'auto-merge'))) || github.event_name == 'issues') }} + if: ${{ github.actor != 'bitnami-bot' && ((github.event.pull_request && (!contains(github.event.pull_request.labels.*.name, 'auto-merge'))) || (github.event.issue && (!contains(github.event.issue.labels.*.name, 'auto-merge')))) }} runs-on: ubuntu-latest steps: - name: Repo checkout