Issue triage: move priority issues to design board

Move X-Needs-Design which are critical or major and high prevalence to the design board

Signed-off-by: Ekaterina Gerasimova <ekaterinag@element.io>
palid/dx/set-concurrently-raw-output
Kat Gerasimova 2021-08-18 09:10:48 +01:00 committed by GitHub
parent a1261254c9
commit 6c39127018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 2 deletions

View File

@ -2,8 +2,8 @@ on:
issues:
types: [labeled]
jobs:
move_issues:
name: Move issues to project board
move_all_issues:
name: Move all X-Needs-Design issues to Design project board
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
@ -12,3 +12,17 @@ jobs:
project-url: "https://github.com/orgs/vector-im/projects/14"
column-name: "📥 Inbox"
label-name: "X-Needs-Design"
move_priority_issues:
name: Move all priority X-Needs-Design issues to Design project board
runs-on: ubuntu-latest
if: >
contains(github.event.issue.labels.*.name, 'X-Needs-Design') &&
(contains(github.event.issue.labels.*.name, 'S-Critical') || contains(github.event.issue.labels.*.name, 'S-Major')) &&
contains(github.event.issue.labels.*.name, 'P-High')
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
with:
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
project-url: "https://github.com/orgs/vector-im/projects/14"
column-name: "Most Urgent"
label-name: "X-Needs-Design"