Skip to content

Commit 5e68c95

Browse files
authored
Merge pull request element-hq#18882 from kittykat/issue-automation
Issue automation: test GitHub's new shiny boards
2 parents e889489 + b873185 commit 5e68c95

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/issues_to_projects.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,20 @@ jobs:
1919
project-url: "https://github.com/orgs/vector-im/projects/14"
2020
column-name: "📥 Inbox"
2121
label-name: "X-Needs-Design"
22+
test_board_beta_with_design_issues:
23+
name: Move priority X-Needs-Design issues to Beta test project board
24+
runs-on: ubuntu-latest
25+
if: >
26+
contains(github.event.issue.labels.*.name, 'X-Needs-Design') &&
27+
(contains(github.event.issue.labels.*.name, 'O-Frequent') ||
28+
contains(github.event.issue.labels.*.name, 'O-Intermediate')) &&
29+
(contains(github.event.issue.labels.*.name, 'S-Critical') ||
30+
contains(github.event.issue.labels.*.name, 'S-Major') ||
31+
contains(github.event.issue.labels.*.name, 'S-Minor'))
32+
steps:
33+
- uses: konradpabjan/[email protected]
34+
with:
35+
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
36+
project-url: "https://github.com/orgs/vector-im/projects/15"
37+
column-name: "Todo"
38+
label-name: "X-Needs-Design"

0 commit comments

Comments
 (0)