mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
665f532301
* Update all * Upgrade @types * Update lockfile * Make typescript happier * Make webpack happier, pin postcss-hexrgba Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
31 lines
1.3 KiB
YAML
31 lines
1.3 KiB
YAML
name: Move P1 bugs to boards
|
|
|
|
on:
|
|
issues:
|
|
types: [labeled, unlabeled]
|
|
|
|
jobs:
|
|
P1_issues_to_crypto_team_workboard:
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
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@be108970955040d35dd6d053c3aff3faaf678026
|
|
with:
|
|
project: Crypto Team
|
|
column: Ready
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|