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 f7d7314d0c/.github/workflows/triage-labelled.yml)
This commit is contained in:
manuroe
2023-01-11 15:27:29 +01:00
parent aeced8a70f
commit 317d8da296

View File

@@ -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 }}