mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
c9fee49b98
Bumps [alex-page/github-project-automation-plus](https://github.com/alex-page/github-project-automation-plus) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/alex-page/github-project-automation-plus/releases)
- [Commits](bb266ff4dd...1f8873e97e
)
---
updated-dependencies:
- dependency-name: alex-page/github-project-automation-plus
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
58 lines
2.7 KiB
YAML
58 lines
2.7 KiB
YAML
name: Move P1 bugs to boards
|
|
|
|
on:
|
|
issues:
|
|
types: [labeled, unlabeled]
|
|
|
|
jobs:
|
|
p1_issues_to_team_workboard:
|
|
runs-on: ubuntu-latest
|
|
# Skip in forks
|
|
if: >
|
|
github.repository == 'vector-im/element-android' &&
|
|
(!contains(github.event.issue.labels.*.name, 'A-E2EE') &&
|
|
!contains(github.event.issue.labels.*.name, 'A-E2EE-Cross-Signing') &&
|
|
!contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') &&
|
|
!contains(github.event.issue.labels.*.name, 'A-E2EE-Key-Backup') &&
|
|
!contains(github.event.issue.labels.*.name, 'A-E2EE-SAS-Verification')) &&
|
|
(contains(github.event.issue.labels.*.name, 'T-Defect') &&
|
|
contains(github.event.issue.labels.*.name, 'S-Critical') &&
|
|
(contains(github.event.issue.labels.*.name, 'O-Frequent') ||
|
|
contains(github.event.issue.labels.*.name, 'O-Occasional')) ||
|
|
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'))
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
|
|
with:
|
|
project: Android App Team
|
|
column: Important Issues & Topics (P1)
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
P1_issues_to_crypto_team_workboard:
|
|
runs-on: ubuntu-latest
|
|
# Skip in forks
|
|
if: >
|
|
github.repository == 'vector-im/element-android' &&
|
|
(contains(github.event.issue.labels.*.name, 'Z-UISI') ||
|
|
(contains(github.event.issue.labels.*.name, 'A-E2EE') ||
|
|
contains(github.event.issue.labels.*.name, 'A-E2EE-Cross-Signing') ||
|
|
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') ||
|
|
contains(github.event.issue.labels.*.name, 'A-E2EE-Key-Backup') ||
|
|
contains(github.event.issue.labels.*.name, 'A-E2EE-SAS-Verification')) &&
|
|
(contains(github.event.issue.labels.*.name, 'T-Defect') &&
|
|
contains(github.event.issue.labels.*.name, 'S-Critical') &&
|
|
(contains(github.event.issue.labels.*.name, 'O-Frequent') ||
|
|
contains(github.event.issue.labels.*.name, 'O-Occasional')) ||
|
|
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')))
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
|
|
with:
|
|
project: Crypto Team
|
|
column: Ready
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|