Merge pull request #18389 from vector-im/dbkr/move_issues_workflow
Add github workflow to put issues tagged design on the design board
This commit is contained in:
commit
aeca4df693
1 changed files with 14 additions and 0 deletions
14
.github/workflows/issues_to_projects.yaml
vendored
Normal file
14
.github/workflows/issues_to_projects.yaml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [labeled]
|
||||||
|
jobs:
|
||||||
|
move_issues:
|
||||||
|
name: Move issues to project board
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
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: "📥 Inbox"
|
||||||
|
label-name: "X-Needs-Design"
|
Loading…
Reference in a new issue