From 5cd6803e8d41d18e7fbf50150922c0f79a64eec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez=20Mor=C3=B3n?= Date: Wed, 20 Jul 2022 16:35:22 +0200 Subject: [PATCH] Changing token for workflow (#11278) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Adding workflows for the support by using the GH board Signed-off-by: Alejandro Gómez * Fixing typo and GH payload for cards Signed-off-by: Alejandro Gómez * Setting properly the support team Signed-off-by: Alejandro Gómez * Adding prefix [Support] to all the Support actions Signed-off-by: Alejandro Gómez * Fixing a typo in the payload structure Signed-off-by: Alejandro Gómez * Adding auto-labeling Signed-off-by: Alejandro Gómez * Updating the proper token to be able to do assignations on PRs Signed-off-by: Alejandro Gómez * Fixing merging conflict Signed-off-by: Alejandro Gómez --- .github/workflows/moving-cards.yml | 2 +- .github/workflows/triage.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/moving-cards.yml b/.github/workflows/moving-cards.yml index 3c8f78d6ba..c84da79c15 100644 --- a/.github/workflows/moving-cards.yml +++ b/.github/workflows/moving-cards.yml @@ -75,4 +75,4 @@ jobs: assignees: ${{ env.SUPPORT_TEAM_STRING }} removePreviousAssignees: true # teams: XXX - repo-token: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + repo-token: "${{ secrets.GHPROJECT_TOKEN }}" \ No newline at end of file diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 7848c265ad..5801fd0207 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -44,7 +44,7 @@ jobs: assignees: ${{ env.TRIAGE_TEAM_STRING }} removePreviousAssignees: false # teams: XXX - repo-token: "${{ secrets.GITHUB_TOKEN }}" + repo-token: "${{ secrets.GHPROJECT_TOKEN }}" - name: Send to the board if: ${{ github.actor != 'bitnami-bot' }} uses: peter-evans/create-or-update-project-card@v2 @@ -60,4 +60,4 @@ jobs: with: add-labels: ${{ (!contains(fromJson(env.BITNAMI_TEAM), github.actor)) && 'triage' || 'bitnami' }} # For reopened issues - remove-labels: "solved" + remove-labels: "solved" \ No newline at end of file