mirror of
https://github.com/bitnami/charts.git
synced 2026-03-09 15:38:00 +08:00
Fixing the race condition only to exclude bitnami-bot ON auto-merge PRs (#11337)
Signed-off-by: Alejandro Gómez <morona@vmware.com>
This commit is contained in:
committed by
GitHub
parent
45f99cea6c
commit
d66c16c239
2
.github/workflows/comments.yml
vendored
2
.github/workflows/comments.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user