2021-11-09 10:35:56 +01:00
|
|
|
name: Move labelled issues to correct boards and columns
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
2022-01-04 11:19:30 +01:00
|
|
|
types: [labeled]
|
2021-12-17 17:18:39 +01:00
|
|
|
|
2021-11-09 10:35:56 +01:00
|
|
|
jobs:
|
2022-01-16 00:26:18 +01:00
|
|
|
apply_Z-Labs_label:
|
|
|
|
name: Add Z-Labs label for features behind labs flags
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-06-01 11:04:47 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Maths') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Message-Pinning') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Polls') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Message-Bubbles') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-IA') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Themes-Custom') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') ||
|
2022-10-27 15:21:14 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Tags') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor')
|
2022-01-16 00:26:18 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/github-script@v5
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
github.rest.issues.addLabels({
|
|
|
|
issue_number: context.issue.number,
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
labels: ['Z-Labs']
|
|
|
|
})
|
|
|
|
|
2022-10-31 15:05:37 +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@v5
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
github.rest.issues.addLabels({
|
|
|
|
issue_number: context.issue.number,
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
labels: ['Help Wanted']
|
|
|
|
})
|
|
|
|
|
2021-11-09 10:35:56 +01:00
|
|
|
move_needs_info_issues:
|
2021-12-02 14:44:25 +01:00
|
|
|
name: X-Needs-Info issues to Need info column on triage board
|
2021-11-09 10:35:56 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-01-04 11:19:30 +01:00
|
|
|
# Skip in forks
|
|
|
|
if: github.repository == 'vector-im/element-android'
|
2021-11-09 10:35:56 +01:00
|
|
|
steps:
|
|
|
|
- uses: konradpabjan/move-labeled-or-milestoned-issue@219d384e03fa4b6460cd24f9f37d19eb033a4338
|
|
|
|
with:
|
|
|
|
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
|
|
|
|
project-url: "https://github.com/vector-im/element-android/projects/4"
|
|
|
|
column-name: "Need info"
|
|
|
|
label-name: "X-Needs-Info"
|
|
|
|
|
2022-07-18 16:14:34 +02:00
|
|
|
add_design_issues_to_project:
|
|
|
|
name: X-Needs-Design to Design project board
|
2021-11-09 10:35:56 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-01-04 11:19:30 +01:00
|
|
|
# Skip in forks
|
|
|
|
if: >
|
|
|
|
github.repository == 'vector-im/element-android' &&
|
2022-10-14 12:49:24 +02:00
|
|
|
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')) ||
|
2022-10-21 10:59:40 +02:00
|
|
|
(contains(github.event.issue.labels.*.name, 'S-Major') &&
|
|
|
|
contains(github.event.issue.labels.*.name, 'O-Frequent')) ||
|
2022-10-14 12:49:24 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'A11y'))
|
2021-11-09 10:35:56 +01:00
|
|
|
steps:
|
2023-04-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2021-11-09 10:35:56 +01:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/18
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-09 10:35:56 +01:00
|
|
|
|
2022-01-16 00:26:18 +01:00
|
|
|
add_product_issues:
|
2023-04-26 11:50:20 +02:00
|
|
|
name: X-Needs-Product to Product project board
|
2022-01-16 00:26:18 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-06-01 11:04:47 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Product')
|
2022-01-16 00:26:18 +01:00
|
|
|
steps:
|
2023-04-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-01-16 00:26:18 +01:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/28
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-04-25 11:00:13 +02:00
|
|
|
|
|
|
|
move_element_x_issues:
|
|
|
|
name: ElementX issues to ElementX project board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Skip in forks
|
|
|
|
if: >
|
|
|
|
github.repository == 'vector-im/element-android' &&
|
2022-07-21 14:24:52 +02:00
|
|
|
(contains(github.event.issue.labels.*.name, 'Z-BBQ-Alpha') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-BBQ-Beta') ||
|
2022-07-22 11:43:58 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'Z-BBQ-Release') ||
|
2022-07-21 14:24:52 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Banquet-Alpha') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Banquet-Beta') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Banquet-Release'))
|
2022-04-25 11:00:13 +02:00
|
|
|
steps:
|
2023-04-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-04-25 11:00:13 +02:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/43
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-02-14 11:53:43 +01:00
|
|
|
|
|
|
|
ex_plorers:
|
|
|
|
name: Add labelled issues to X-Plorer project
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'Team: Element X Feature')
|
|
|
|
steps:
|
2023-04-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2023-02-14 11:53:43 +01:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/73
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-02-14 11:53:43 +01:00
|
|
|
|
2022-10-13 18:09:11 +02: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-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-10-13 18:09:11 +02:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/56
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-13 18:09:11 +02: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-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-10-13 18:09:11 +02:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/58
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-13 18:09:11 +02:00
|
|
|
|
|
|
|
ps_features3:
|
|
|
|
name: Add labelled issues to PS features team 3
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-10-25 12:20:14 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor')
|
2022-10-13 18:09:11 +02:00
|
|
|
steps:
|
2023-04-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-10-13 18:09:11 +02:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/57
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-25 12:20:14 +02: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-25 12:57:05 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-10-25 12:20:14 +02:00
|
|
|
with:
|
2023-04-25 12:57:05 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/41
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|