2022-03-31 15:55:10 +00:00
|
|
|
name: Move labelled issues to correct projects
|
2021-11-02 20:54:00 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
2022-05-18 10:59:32 +00:00
|
|
|
types: [labeled]
|
2023-11-06 13:09:13 +00:00
|
|
|
workflow_call:
|
2023-11-06 14:55:50 +00:00
|
|
|
secrets:
|
|
|
|
ELEMENT_BOT_TOKEN:
|
|
|
|
required: true
|
2022-05-16 14:23:44 +00:00
|
|
|
|
2024-11-20 15:44:02 +00:00
|
|
|
permissions: {} # We use ELEMENT_BOT_TOKEN instead
|
|
|
|
|
2021-11-02 20:54:00 +00:00
|
|
|
jobs:
|
2021-12-16 19:25:13 +00:00
|
|
|
apply_Z-Labs_label:
|
|
|
|
name: Add Z-Labs label for features behind labs flags
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2021-12-16 19:25:13 +00:00
|
|
|
if: >
|
2022-05-16 14:23:44 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Maths') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-IA') ||
|
2023-02-17 09:11:34 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Jump-To-Date ') ||
|
2022-05-16 14:23:44 +00: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 15:16:44 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Video-Rooms') ||
|
2022-10-26 13:09:21 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Message-Starring') ||
|
2022-11-03 16:32:52 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor') ||
|
2024-03-11 12:38:20 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-Call')
|
2021-12-16 19:25:13 +00:00
|
|
|
steps:
|
2023-11-15 22:29:06 +00:00
|
|
|
- uses: actions/github-script@v7
|
2021-12-16 19:25:13 +00: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 13:12:27 +00:00
|
|
|
|
2022-10-31 12:21:58 +00:00
|
|
|
apply_Help-Wanted_label:
|
|
|
|
name: Add "Help Wanted" label to all "good first issue" and Hacktoberfest
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2022-10-31 12:21:58 +00:00
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'good first issue') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'Hacktoberfest')
|
|
|
|
steps:
|
2023-11-15 22:29:06 +00:00
|
|
|
- uses: actions/github-script@v7
|
2022-10-31 12:21:58 +00: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-02 20:54:00 +00:00
|
|
|
move_needs_info_issues:
|
2021-12-02 15:44:02 +00:00
|
|
|
name: X-Needs-Info issues to Need info column on triage board
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2024-07-10 15:23:19 +00:00
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Info')
|
|
|
|
steps:
|
|
|
|
- id: add_to_project
|
2024-07-24 12:57:44 +00:00
|
|
|
uses: actions/add-to-project@v1.0.2
|
2024-07-10 15:23:19 +00:00
|
|
|
with:
|
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
|
|
|
|
- id: set_fields
|
|
|
|
uses: titoportas/update-project-fields@421a54430b3cdc9eefd8f14f9ce0142ab7678751 # v0.1.0
|
|
|
|
with:
|
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
item-id: ${{ steps.add_to_project.outputs.itemId }} # Use the item-id output of the previous step
|
|
|
|
field-keys: Status
|
|
|
|
field-values: "Needs info"
|
|
|
|
env:
|
|
|
|
PROJECT_URL: https://github.com/orgs/element-hq/projects/120
|
|
|
|
|
|
|
|
move_flakey_test_issues:
|
|
|
|
name: Z-Flaky-Test issues to Sized for maintainer column on triage board
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2024-07-10 15:23:19 +00:00
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Flaky-Test')
|
2021-11-02 20:54:00 +00:00
|
|
|
steps:
|
2024-07-10 15:23:19 +00:00
|
|
|
- id: add_to_project
|
2024-07-24 12:57:44 +00:00
|
|
|
uses: actions/add-to-project@v1.0.2
|
2024-07-10 15:23:19 +00:00
|
|
|
with:
|
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
|
|
|
|
- id: set_fields
|
|
|
|
uses: titoportas/update-project-fields@421a54430b3cdc9eefd8f14f9ce0142ab7678751 # v0.1.0
|
2021-11-04 11:43:12 +00:00
|
|
|
with:
|
2024-07-10 15:23:19 +00:00
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
item-id: ${{ steps.add_to_project.outputs.itemId }} # Use the item-id output of the previous step
|
|
|
|
field-keys: Status
|
|
|
|
field-values: "Sized for maintainer"
|
|
|
|
env:
|
|
|
|
PROJECT_URL: https://github.com/orgs/element-hq/projects/120
|
2021-11-02 20:54:00 +00:00
|
|
|
|
2021-11-05 21:12:49 +00:00
|
|
|
add_priority_design_issues_to_project:
|
2021-12-02 15:44:02 +00:00
|
|
|
name: P1 X-Needs-Design to Design project board
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2021-11-02 20:54:00 +00:00
|
|
|
if: >
|
2022-10-25 10:06:24 +00: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-02 20:54:00 +00:00
|
|
|
steps:
|
2023-04-26 18:16:50 +00:00
|
|
|
- uses: actions/add-to-project@main
|
2021-11-02 20:54:00 +00:00
|
|
|
with:
|
2023-12-12 10:31:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/18
|
2023-04-26 18:16:50 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-02 20:54:00 +00:00
|
|
|
|
2022-01-18 13:12:27 +00:00
|
|
|
add_product_issues:
|
2022-12-08 13:45:33 +00:00
|
|
|
name: X-Needs-Product to product project board
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2022-01-18 13:12:27 +00:00
|
|
|
if: >
|
2022-05-16 14:23:44 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Product')
|
2022-01-18 13:12:27 +00:00
|
|
|
steps:
|
2023-04-26 18:16:50 +00:00
|
|
|
- uses: actions/add-to-project@main
|
2022-01-18 13:12:27 +00:00
|
|
|
with:
|
2023-12-12 10:31:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/28
|
2023-04-26 18:16:50 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-04 15:45:28 +00:00
|
|
|
|
|
|
|
Search_issues_to_board:
|
2021-12-02 15:44:02 +00:00
|
|
|
name: Search issues to project board
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2021-11-04 15:45:28 +00:00
|
|
|
if: >
|
2022-05-16 14:23:44 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-New-Search-Experience')
|
2021-11-04 15:45:28 +00:00
|
|
|
steps:
|
2023-04-26 18:16:50 +00:00
|
|
|
- uses: actions/add-to-project@main
|
2021-11-09 15:10:19 +00:00
|
|
|
with:
|
2023-12-12 10:31:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/48
|
2023-04-26 18:16:50 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-13 16:46:10 +00:00
|
|
|
|
2022-12-09 12:28:29 +00:00
|
|
|
voip:
|
2022-03-31 15:55:10 +00:00
|
|
|
name: Add labelled issues to VoIP project board
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2022-12-09 12:28:29 +00:00
|
|
|
if: >
|
2022-10-25 12:43:29 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'Team: VoIP')
|
|
|
|
steps:
|
2023-04-26 18:16:50 +00:00
|
|
|
- uses: actions/add-to-project@main
|
2022-10-25 12:43:29 +00:00
|
|
|
with:
|
2023-12-12 10:31:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/41
|
2023-04-26 18:16:50 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-02-22 15:18:32 +00:00
|
|
|
|
|
|
|
verticals_feature:
|
|
|
|
name: Add labelled issues to Verticals Feature project
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2023-02-22 15:18:32 +00:00
|
|
|
if: >
|
|
|
|
contains(github.event.issue.labels.*.name, 'Team: Verticals Feature')
|
|
|
|
steps:
|
2023-04-26 18:16:50 +00:00
|
|
|
- uses: actions/add-to-project@main
|
2023-02-22 15:18:32 +00:00
|
|
|
with:
|
2023-12-12 10:31:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/57
|
2023-04-26 18:16:50 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-10-06 14:01:11 +00:00
|
|
|
|
|
|
|
tech_debt:
|
|
|
|
name: Add labelled issues to tech debt project
|
2024-10-17 10:10:32 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2023-10-06 14:01:11 +00:00
|
|
|
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 14:15:14 +00:00
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Flaky-Test')
|
2023-10-06 14:01:11 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/add-to-project@main
|
|
|
|
with:
|
2023-12-12 10:31:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/101
|
2023-10-06 14:01:11 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|