2022-03-31 23:55:10 +08:00
|
|
|
name: Move labelled issues to correct projects
|
2021-11-03 04:54:00 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
2022-05-18 18:59:32 +08:00
|
|
|
types: [labeled]
|
2023-11-06 21:09:13 +08:00
|
|
|
workflow_call:
|
2023-11-06 22:55:50 +08:00
|
|
|
secrets:
|
|
|
|
ELEMENT_BOT_TOKEN:
|
|
|
|
required: true
|
2022-05-16 22:23:44 +08:00
|
|
|
|
2021-11-03 04:54:00 +08:00
|
|
|
jobs:
|
2021-12-17 03:25:13 +08:00
|
|
|
apply_Z-Labs_label:
|
|
|
|
name: Add Z-Labs label for features behind labs flags
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-05-16 22:23:44 +08: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-Location-Sharing') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-IA') ||
|
2023-02-17 17:11:34 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Jump-To-Date ') ||
|
2022-05-16 22:23:44 +08: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') ||
|
2022-06-07 23:16:44 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Video-Rooms') ||
|
2022-10-26 21:09:21 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Message-Starring') ||
|
2022-11-04 00:32:52 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor') ||
|
2023-10-19 19:06:34 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-Call') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-R')
|
2021-12-17 03:25:13 +08:00
|
|
|
steps:
|
2023-11-16 06:29:06 +08:00
|
|
|
- uses: actions/github-script@v7
|
2021-12-17 03:25:13 +08:00
|
|
|
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 21:12:27 +08:00
|
|
|
|
2022-10-31 20:21:58 +08: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:
|
2023-11-16 06:29:06 +08:00
|
|
|
- uses: actions/github-script@v7
|
2022-10-31 20:21:58 +08:00
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
github.rest.issues.addLabels({
|
|
|
|
issue_number: context.issue.number,
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
labels: ['Help Wanted']
|
|
|
|
})
|
|
|
|
|
2021-11-03 04:54:00 +08:00
|
|
|
move_needs_info_issues:
|
2021-12-02 23:44:02 +08:00
|
|
|
name: X-Needs-Info issues to Need info column on triage board
|
2021-11-03 04:54:00 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-10 11:03:46 +08:00
|
|
|
- uses: konradpabjan/move-labeled-or-milestoned-issue@190352295fe309fcb113b49193bc81d9aaa9cb01
|
2021-11-04 19:43:12 +08:00
|
|
|
with:
|
|
|
|
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: "https://github.com/element-hq/element-web/projects/27"
|
2021-11-04 19:43:12 +08:00
|
|
|
column-name: "Need info"
|
|
|
|
label-name: "X-Needs-Info"
|
2021-11-03 04:54:00 +08:00
|
|
|
|
2021-11-06 05:12:49 +08:00
|
|
|
add_priority_design_issues_to_project:
|
2021-12-02 23:44:02 +08:00
|
|
|
name: P1 X-Needs-Design to Design project board
|
2021-11-03 04:54:00 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-10-25 18:06:24 +08: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')) ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'S-Major') &&
|
|
|
|
contains(github.event.issue.labels.*.name, 'O-Frequent') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A11y'))
|
2021-11-03 04:54:00 +08:00
|
|
|
steps:
|
2023-04-27 02:16:50 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2021-11-03 04:54:00 +08:00
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/18
|
2023-04-27 02:16:50 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-03 04:54:00 +08:00
|
|
|
|
2022-01-18 21:12:27 +08:00
|
|
|
add_product_issues:
|
2022-12-08 21:45:33 +08:00
|
|
|
name: X-Needs-Product to product project board
|
2022-01-18 21:12:27 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-05-16 22:23:44 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Product')
|
2022-01-18 21:12:27 +08:00
|
|
|
steps:
|
2023-04-27 02:16:50 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2022-01-18 21:12:27 +08:00
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/28
|
2023-04-27 02:16:50 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-04 23:45:28 +08:00
|
|
|
|
|
|
|
Search_issues_to_board:
|
2021-12-02 23:44:02 +08:00
|
|
|
name: Search issues to project board
|
2021-11-04 23:45:28 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-05-16 22:23:44 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-New-Search-Experience')
|
2021-11-04 23:45:28 +08:00
|
|
|
steps:
|
2023-04-27 02:16:50 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2021-11-09 23:10:19 +08:00
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/48
|
2023-04-27 02:16:50 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-14 00:46:10 +08:00
|
|
|
|
2022-12-09 20:28:29 +08:00
|
|
|
voip:
|
2022-03-31 23:55:10 +08:00
|
|
|
name: Add labelled issues to VoIP project board
|
2022-08-30 17:01:23 +08:00
|
|
|
runs-on: ubuntu-latest
|
2022-12-09 20:28:29 +08:00
|
|
|
if: >
|
2022-10-25 20:43:29 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'Team: VoIP')
|
|
|
|
steps:
|
2023-04-27 02:16:50 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2022-10-25 20:43:29 +08:00
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/41
|
2023-04-27 02:16:50 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-02-22 23:18:32 +08: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-27 02:16:50 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2023-02-22 23:18:32 +08:00
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/57
|
2023-04-27 02:16:50 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-10-06 22:01:11 +08:00
|
|
|
|
|
|
|
tech_debt:
|
|
|
|
name: Add labelled issues to tech debt project
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Developer-Experience') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Documentation') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Packaging') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Technical-Debt') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Testing') ||
|
2023-10-06 22:15:14 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Flaky-Test')
|
2023-10-06 22:01:11 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/add-to-project@main
|
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/101
|
2023-10-06 22:01:11 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-10-19 17:06:37 +08:00
|
|
|
|
|
|
|
element_r:
|
|
|
|
name: Add Element R issues to Crypto Team board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2023-10-19 19:04:14 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-R')
|
2023-10-19 17:06:37 +08:00
|
|
|
steps:
|
|
|
|
- id: add_to_project
|
2024-03-05 22:43:40 +08:00
|
|
|
uses: actions/add-to-project@v0.6.0
|
2023-10-19 17:06:37 +08:00
|
|
|
with:
|
2023-10-19 19:14:31 +08:00
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
2023-10-19 17:06:37 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
|
|
|
|
- id: set_fields
|
2023-11-01 01:42:46 +08:00
|
|
|
uses: titoportas/update-project-fields@421a54430b3cdc9eefd8f14f9ce0142ab7678751 # v0.1.0
|
2023-10-19 17:06:37 +08:00
|
|
|
with:
|
2023-10-19 19:14:31 +08:00
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
2023-10-19 17:06:37 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
item-id: ${{ steps.add_to_project.outputs.itemId }} # Use the item-id output of the previous step
|
2023-10-19 20:29:21 +08:00
|
|
|
field-keys: Workstream,module
|
|
|
|
field-values: Element-R,web
|
2023-10-19 17:06:37 +08:00
|
|
|
env:
|
2023-12-12 18:31:44 +08:00
|
|
|
PROJECT_URL: https://github.com/orgs/element-hq/projects/76
|