diff --git a/.github/workflows/ci-automated-pipeline.yaml b/.github/workflows/ci-automated-pipeline.yaml index d128aa52d366..4412a7d8ba5f 100644 --- a/.github/workflows/ci-automated-pipeline.yaml +++ b/.github/workflows/ci-automated-pipeline.yaml @@ -25,7 +25,6 @@ jobs: name: Label PR uses: andymckay/labeler@1.0.4 with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" add-labels: "verify, auto-merge" - id: auto-merge name: Enable auto-merge diff --git a/.github/workflows/moving-cards.yml b/.github/workflows/moving-cards.yml index a38942623ca3..a1aa0565b7e4 100644 --- a/.github/workflows/moving-cards.yml +++ b/.github/workflows/moving-cards.yml @@ -33,7 +33,6 @@ jobs: if: ${{ github.event.project_card.column_id == env.ON_HOLD_COLUMN_ID }} uses: andymckay/labeler@1.0.4 with: - repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}" add-labels: "on-hold" remove-labels: "triage" - name: In progress labeling @@ -41,7 +40,6 @@ jobs: if: ${{ github.event.project_card.column_id == env.IN_PROGRESS_COLUMN_ID }} uses: andymckay/labeler@1.0.4 with: - repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}" add-labels: "in-progress" remove-labels: "on-hold, triage" - name: Solved labeling @@ -49,7 +47,6 @@ jobs: if: ${{ github.event.project_card.column_id == env.SOLVED_COLUMN_ID }} uses: andymckay/labeler@1.0.4 with: - repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}" add-labels: "solved" remove-labels: "in-progress, on-hold, triage" assign-assignee-if-needed: diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 94d00d71e6c1..0d34d0bd751b 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -51,7 +51,6 @@ jobs: # Only if moved into Solved uses: andymckay/labeler@1.0.4 with: - repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}" add-labels: ${{ (!contains(fromJson(env.BITNAMI_TEAM), github.actor)) && 'triage' || 'bitnami' }} # For reopened issues remove-labels: "solved" \ No newline at end of file