Add Actions for moving tasks on triage workboard

The Action token may or may not work, no way to test without trying

Signed-off-by: Ekaterina Gerasimova <kittykat3756@gmail.com>
pull/18462/head
Ekaterina Gerasimova 2021-08-09 15:12:01 +01:00
parent 60dd660fec
commit 4de76c4c8e
2 changed files with 31 additions and 0 deletions

15
.github/workflows/triage-incoming.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Move new issues into Issue triage board
on:
issues:
types: [opened]
jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Issue triage
column: Incoming
repo-token: ${{ secrets.GITHUB_TOKEN }}

16
.github/workflows/triage-needs-info.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Move X-Needs-Info into Need info column in the Issue triage board
on:
issues:
types: [labeled]
jobs:
Move_Labeled_Issue_On_Project_Board:
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: "https://github.com/vector-im/element-web/projects/27"
column-name: "Need info"
label-name: "X-Needs-Info"