From 428a3581f35f436dfa5d7401654f370b90d6ab13 Mon Sep 17 00:00:00 2001 From: Kat Gerasimova Date: Fri, 26 May 2023 11:39:55 +0100 Subject: [PATCH] Update triage automation for signoff --- .github/workflows/triage_labelled.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/triage_labelled.yml b/.github/workflows/triage_labelled.yml index 32e22f466..83621c6bf 100644 --- a/.github/workflows/triage_labelled.yml +++ b/.github/workflows/triage_labelled.yml @@ -42,9 +42,21 @@ jobs: name: Add labelled issues to QA project runs-on: ubuntu-latest if: > - contains(github.event.issue.labels.*.name, 'Team: QA') + contains(github.event.issue.labels.*.name, 'Team: QA') || + contains(github.event.issue.labels.*.name, 'X-Needs-Signoff') steps: - uses: actions/add-to-project@main with: project-url: https://github.com/orgs/vector-im/projects/69 github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} + + signoff: + name: Add labelled issues to signoff project + runs-on: ubuntu-latest + if: > + contains(github.event.issue.labels.*.name, 'X-Needs-Signoff') + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/vector-im/projects/89 + github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}