2021-08-17 18:25:58 -04:00
|
|
|
name: Move labelled issues into the Priority bugs column for the Web App Team
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [labeled]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Move_high_priority_issues_to_team_workboard:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2021-08-19 09:33:45 -04:00
|
|
|
contains(github.event.issue.labels.*.name, 'T-Defect') &&
|
2021-08-19 06:01:07 -04:00
|
|
|
contains(github.event.issue.labels.*.name, 'S-Critical') &&
|
|
|
|
(contains(github.event.issue.labels.*.name, 'O-Frequent') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'O-Intermediate')) ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'S-Major') &&
|
|
|
|
contains(github.event.issue.labels.*.name, 'O-Frequent') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A11y') &&
|
|
|
|
contains(github.event.issue.labels.*.name, 'O-Frequent')
|
2021-08-17 18:25:58 -04:00
|
|
|
steps:
|
|
|
|
- uses: alex-page/github-project-automation-plus@v0.8.1
|
|
|
|
with:
|
|
|
|
project: Web App Team
|
2021-08-25 10:45:56 -04:00
|
|
|
column: P1
|
2021-08-17 18:25:58 -04:00
|
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
|