mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 06:47:18 +08:00
[bitnami/charts] Fix comments workflow to manage any comment from users (#16426)
Signed-off-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
9
.github/workflows/comments.yml
vendored
9
.github/workflows/comments.yml
vendored
@@ -33,7 +33,8 @@ jobs:
|
||||
uses: peter-evans/create-or-update-project-card@v2
|
||||
if: |
|
||||
(github.actor != 'bitnami-bot' || github.event.issue.user.login != 'bitnami-bot' || github.event.issue.pull_request == null) &&
|
||||
(!contains(github.event.issue.labels.*.name, 'bitnami')) && contains(fromJson(env.BITNAMI_TEAM), github.actor)
|
||||
contains(fromJson(env.BITNAMI_TEAM), github.actor) &&
|
||||
(!contains(github.event.issue.labels.*.name, 'bitnami'))
|
||||
with:
|
||||
project-name: Support
|
||||
column-name: Pending
|
||||
@@ -41,7 +42,8 @@ jobs:
|
||||
uses: peter-evans/create-or-update-project-card@v2
|
||||
if: |
|
||||
(github.actor != 'bitnami-bot' || github.event.issue.user.login != 'bitnami-bot' || github.event.issue.pull_request == null) &&
|
||||
contains(github.event.issue.labels.*.name, 'in-progress') && (!contains(fromJson(env.BITNAMI_TEAM), github.actor))
|
||||
(!contains(fromJson(env.BITNAMI_TEAM), github.actor)) &&
|
||||
contains(github.event.issue.labels.*.name, 'in-progress')
|
||||
with:
|
||||
project-name: Support
|
||||
column-name: In progress
|
||||
@@ -49,7 +51,8 @@ jobs:
|
||||
uses: peter-evans/create-or-update-project-card@v2
|
||||
if: |
|
||||
(github.actor != 'bitnami-bot' || github.event.issue.user.login != 'bitnami-bot' || github.event.issue.pull_request == null) &&
|
||||
((contains(github.event.issue.labels.*.name, 'triage')) || (contains(github.event.issue.labels.*.name, 'solved'))) && (!contains(fromJson(env.BITNAMI_TEAM), github.actor))
|
||||
(!contains(fromJson(env.BITNAMI_TEAM), github.actor)) &&
|
||||
(!contains(github.event.issue.labels.*.name, 'in-progress'))
|
||||
with:
|
||||
project-name: Support
|
||||
column-name: Triage
|
||||
|
||||
Reference in New Issue
Block a user