2022-03-31 17:55:10 +02:00
|
|
|
name: Move labelled issues to correct projects
|
2021-11-02 21:54:00 +01:00
|
|
|
|
|
|
|
on:
|
2022-12-09 13:28:29 +01:00
|
|
|
issues:
|
|
|
|
types: [labeled]
|
2022-05-16 16:23:44 +02:00
|
|
|
|
2021-11-02 21:54:00 +01:00
|
|
|
jobs:
|
2022-12-09 13:28:29 +01:00
|
|
|
apply_Z-Labs_label:
|
|
|
|
name: Add Z-Labs label for features behind labs flags
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Maths') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Message-Pinning') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-IA') ||
|
2023-02-17 10:11:34 +01:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Jump-To-Date ') ||
|
2022-12-09 13:28:29 +01:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Themes-Custom') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Tags') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Video-Rooms') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Message-Starring') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-Call')
|
|
|
|
steps:
|
|
|
|
- uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
github.rest.issues.addLabels({
|
|
|
|
issue_number: context.issue.number,
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
labels: ['Z-Labs']
|
|
|
|
})
|
2022-01-18 14:12:27 +01:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
apply_Help-Wanted_label:
|
|
|
|
name: Add "Help Wanted" label to all "good first issue" and Hacktoberfest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'good first issue') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Hacktoberfest')
|
|
|
|
steps:
|
|
|
|
- uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
github.rest.issues.addLabels({
|
|
|
|
issue_number: context.issue.number,
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
labels: ['Help Wanted']
|
|
|
|
})
|
2022-10-31 13:21:58 +01:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
move_needs_info_issues:
|
|
|
|
name: X-Needs-Info issues to Need info column on triage board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: konradpabjan/move-labeled-or-milestoned-issue@190352295fe309fcb113b49193bc81d9aaa9cb01
|
|
|
|
with:
|
|
|
|
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
|
|
|
|
project-url: "https://github.com/vector-im/element-web/projects/27"
|
|
|
|
column-name: "Need info"
|
|
|
|
label-name: "X-Needs-Info"
|
2021-11-02 21:54:00 +01:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
add_priority_design_issues_to_project:
|
|
|
|
name: P1 X-Needs-Design to Design project board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Design') &&
|
|
|
|
(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'))
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/18
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-02 21:54:00 +01:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
add_product_issues:
|
|
|
|
name: X-Needs-Product to product project board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Product')
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/28
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-04 16:45:28 +01:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
Search_issues_to_board:
|
|
|
|
name: Search issues to project board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-New-Search-Experience')
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/48
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-13 18:46:10 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
ps_features1:
|
|
|
|
name: Add labelled issues to PS features team 1
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Polls') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
|
|
|
|
(contains(github.event.issue.labels.*.name, 'A-Voice-Messages') &&
|
|
|
|
!contains(github.event.issue.labels.*.name, 'A-Broadcast')) ||
|
|
|
|
(contains(github.event.issue.labels.*.name, 'A-Session-Mgmt') &&
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-User-Settings'))
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/56
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-13 18:46:10 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
ps_features2:
|
|
|
|
name: Add labelled issues to PS features team 2
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-DM-Start') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Broadcast')
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/58
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-25 14:43:29 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
ps_features3:
|
|
|
|
name: Add labelled issues to PS features team 3
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor')
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/57
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-12-09 13:28:29 +01:00
|
|
|
|
|
|
|
voip:
|
|
|
|
name: Add labelled issues to VoIP project board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'Team: VoIP')
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/41
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-02-22 16:18:32 +01:00
|
|
|
|
|
|
|
verticals_feature:
|
|
|
|
name: Add labelled issues to Verticals Feature project
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'Team: Verticals Feature')
|
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2023-02-22 16:18:32 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/57
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|