mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
f9af8a9f07
Beta boards automation is different from old boards
This reverts commit b873185c68
.
Signed-off-by: Ekaterina Gerasimova <ekaterinag@element.io>
22 lines
983 B
YAML
22 lines
983 B
YAML
on:
|
|
issues:
|
|
types: [labeled]
|
|
jobs:
|
|
move_priority_design_issues:
|
|
name: Move 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, 'O-Frequent') ||
|
|
contains(github.event.issue.labels.*.name, 'O-Intermediate')) &&
|
|
(contains(github.event.issue.labels.*.name, 'S-Critical') ||
|
|
contains(github.event.issue.labels.*.name, 'S-Major') ||
|
|
contains(github.event.issue.labels.*.name, 'S-Minor'))
|
|
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"
|