diff --git a/.github/workflows/.env b/.github/workflows/.env index c854d502d7d9..fc3aa13b28cc 100644 --- a/.github/workflows/.env +++ b/.github/workflows/.env @@ -5,6 +5,5 @@ SOLVED_COLUMN_ID=19026825 ON_HOLD_COLUMN_ID=19026824 BITNAMI_COLUMN_ID=19026818 PENDING_COLUMN_ID=19026823 -BUILD_MAINTENANCE_COLUMN_ID=19168045 SUPPORT_TEAM_NAME='containers-support' TRIAGE_TEAM_NAME='containers-triage' diff --git a/.github/workflows/comments.yml b/.github/workflows/comments.yml index 64550a05525c..b8eaaa1d5caf 100644 --- a/.github/workflows/comments.yml +++ b/.github/workflows/comments.yml @@ -23,15 +23,6 @@ jobs: uses: xom9ikk/dotenv@v2 with: path: .github/workflows/ - - name: Move into From Build Maintenance - uses: peter-evans/create-or-update-project-card@v2 - # The comment was created by bitnami-bot in a pull_request created by bitnami-bot - if: ${{ github.actor == 'bitnami-bot' && github.event.issue.user.login == 'bitnami-bot' && github.event.issue.pull_request != null }} - with: - project-name: Support - column-name: Build Maintenance - # Required to trigger moving-cards.yml workflow (clean labels and assign people to work on it) - token: "${{ secrets.BITNAMI_BOT_TOKEN }}" - name: Move into Pending uses: peter-evans/create-or-update-project-card@v2 if: | diff --git a/.github/workflows/moving-cards.yml b/.github/workflows/moving-cards.yml index f35e71d345a5..93d6b353c16d 100644 --- a/.github/workflows/moving-cards.yml +++ b/.github/workflows/moving-cards.yml @@ -80,12 +80,6 @@ jobs: with: repo-token: ${{ secrets.BITNAMI_BOT_TOKEN }} add-labels: verify - - name: Build Maintenance labeling - if: ${{ github.event.project_card.column_id == env.BUILD_MAINTENANCE_COLUMN_ID }} - uses: fmulero/labeler@1.1.0 - with: - add-labels: review-required - remove-labels: auto-merge - name: On hold labeling # Only if moved into on hold if: ${{ github.event.project_card.column_id == env.ON_HOLD_COLUMN_ID }} @@ -129,10 +123,8 @@ jobs: path: .github/workflows/ - name: Assign to a person to work on it # 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') + github.event.project_card.column_id != env.SOLVED_COLUMN_ID && (needs.get-issue.outputs.assignees == '[]' || github.event.action == 'created') uses: pozil/auto-assign-issue@v1.11.0 with: numOfAssignee: 1