From e51e62087d60f9f755bff1d737b696c16f2f92d0 Mon Sep 17 00:00:00 2001 From: Kat Gerasimova Date: Fri, 26 May 2023 11:40:02 +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 d7951a012b..ec69eae6bb 100644 --- a/.github/workflows/triage-labelled.yml +++ b/.github/workflows/triage-labelled.yml @@ -43,9 +43,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 }}