mirror of
https://github.com/bitnami/containers.git
synced 2026-02-11 05:37:27 +08:00
[bitnami/containers] Avoid assignment of cards in Build Maintenance column (#37811)
Signed-off-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
9
.github/workflows/moving-cards.yml
vendored
9
.github/workflows/moving-cards.yml
vendored
@@ -128,12 +128,15 @@ jobs:
|
||||
with:
|
||||
path: .github/workflows/
|
||||
- name: Assign to a person to work on it
|
||||
# Assign when there is nobody assigned or the card is new
|
||||
if: ${{ github.event.project_card.column_id != env.SOLVED_COLUMN_ID && (needs.get-issue.outputs.assignees == '[]' || github.event.action == 'created') }}
|
||||
# Assign when there is nobody assigned or the card is new.
|
||||
# Cards in Build Maintenance column will remain unassigned.
|
||||
if: |
|
||||
github.event.project_card.column_id != env.SOLVED_COLUMN_ID && github.event.project_card.column_id != env.BUILD_MAINTENANCE_COLUMN_ID &&
|
||||
(needs.get-issue.outputs.assignees == '[]' || github.event.action == 'created')
|
||||
uses: pozil/auto-assign-issue@v1.11.0
|
||||
with:
|
||||
numOfAssignee: 1
|
||||
teams: ${{ github.event.project_card.column_id == env.BITNAMI_COLUMN_ID && env.SUPPORT_TEAM_NAME || (github.event.project_card.column_id == env.BUILD_MAINTENANCE_COLUMN_ID && env.BUILD_MAINTAINERS_TEAM_NAME || env.TRIAGE_TEAM_NAME) }}
|
||||
teams: ${{ github.event.project_card.column_id == env.BITNAMI_COLUMN_ID && env.SUPPORT_TEAM_NAME || env.TRIAGE_TEAM_NAME }}
|
||||
repo-token: ${{ secrets.BITNAMI_BOT_TOKEN }}
|
||||
allowSelfAssign: false
|
||||
- name: Reassign when moved into 'In progress' from 'Triage'
|
||||
|
||||
Reference in New Issue
Block a user