From 317d8da29692297dfc38a67cdc972933cafd84ba Mon Sep 17 00:00:00 2001 From: manuroe Date: Wed, 11 Jan 2023 15:27:29 +0100 Subject: [PATCH] GH board: Send all issues to the EX board Once labelled, an issue will go the [EX board](https://github.com/orgs/vector-im/projects/43). This commit fixed the board to use ( I C+Ped https://github.com/vector-im/element-x-ios/blob/f7d7314d0c14b320036d87bae0759685ed090693/.github/workflows/triage-labelled.yml) --- .github/workflows/triage-labelled.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/triage-labelled.yml b/.github/workflows/triage-labelled.yml index de2522c9e3..74bcc29d97 100644 --- a/.github/workflows/triage-labelled.yml +++ b/.github/workflows/triage-labelled.yml @@ -2,7 +2,7 @@ name: Move labelled issues to correct boards and columns on: issues: - types: [ labeled ] + types: [labeled] jobs: move_element_x_issues: @@ -10,14 +10,7 @@ jobs: runs-on: ubuntu-latest # Skip in forks if: > - github.repository == 'vector-im/element-x-android' && - (contains(github.event.issue.labels.*.name, 'Z-Setup') || - contains(github.event.issue.labels.*.name, 'Z-BBQ-Alpha') || - contains(github.event.issue.labels.*.name, 'Z-BBQ-Beta') || - contains(github.event.issue.labels.*.name, 'Z-BBQ-Release') || - contains(github.event.issue.labels.*.name, 'Z-Banquet-Alpha') || - contains(github.event.issue.labels.*.name, 'Z-Banquet-Beta') || - contains(github.event.issue.labels.*.name, 'Z-Banquet-Release')) + github.repository == 'vector-im/element-x-android' steps: - uses: octokit/graphql-action@v2.x with: @@ -33,5 +26,5 @@ jobs: projectid: ${{ env.PROJECT_ID }} contentid: ${{ github.event.issue.node_id }} env: - PROJECT_ID: "PN_kwDOAM0swc4ABTXY" + PROJECT_ID: "PVT_kwDOAM0swc4ABTXY" GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}