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]
|
2023-11-06 14:09:13 +01:00
|
|
|
workflow_call:
|
2023-11-06 15:55:50 +01:00
|
|
|
secrets:
|
|
|
|
ELEMENT_BOT_TOKEN:
|
|
|
|
required: true
|
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') ||
|
2024-03-11 13:38:20 +01:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-Call')
|
2022-12-09 13:28:29 +01:00
|
|
|
steps:
|
2023-11-15 23:29:06 +01:00
|
|
|
- uses: actions/github-script@v7
|
2022-12-09 13:28:29 +01: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 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:
|
2023-11-15 23:29:06 +01:00
|
|
|
- uses: actions/github-script@v7
|
2022-12-09 13:28:29 +01:00
|
|
|
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 }}"
|
2023-12-12 11:31:44 +01:00
|
|
|
project-url: "https://github.com/element-hq/element-web/projects/27"
|
2022-12-09 13:28:29 +01:00
|
|
|
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-12-12 11:31:44 +01:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/18
|
2023-04-26 20:16:50 +02:00
|
|
|
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-12-12 11:31:44 +01:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/28
|
2023-04-26 20:16:50 +02:00
|
|
|
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-12-12 11:31:44 +01:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/48
|
2023-04-26 20:16:50 +02:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-10-13 18:46:10 +02:00
|
|
|
|
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-12-12 11:31:44 +01:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/41
|
2023-04-26 20:16:50 +02:00
|
|
|
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-12-12 11:31:44 +01:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/57
|
2023-04-26 20:16:50 +02:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-10-06 16:01:11 +02: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 16:15:14 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'Z-Flaky-Test')
|
2023-10-06 16:01:11 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/add-to-project@main
|
|
|
|
with:
|
2023-12-12 11:31:44 +01:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/101
|
2023-10-06 16:01:11 +02:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-10-19 11:06:37 +02:00
|
|
|
|
|
|
|
element_r:
|
|
|
|
name: Add Element R issues to Crypto Team board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2023-10-19 13:04:14 +02:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Element-R')
|
2023-10-19 11:06:37 +02:00
|
|
|
steps:
|
|
|
|
- id: add_to_project
|
2024-04-03 20:46:24 +02:00
|
|
|
uses: actions/add-to-project@v1.0.0
|
2023-10-19 11:06:37 +02:00
|
|
|
with:
|
2023-10-19 13:14:31 +02:00
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
2023-10-19 11:06:37 +02:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
|
|
|
|
- id: set_fields
|
2023-10-31 18:42:46 +01:00
|
|
|
uses: titoportas/update-project-fields@421a54430b3cdc9eefd8f14f9ce0142ab7678751 # v0.1.0
|
2023-10-19 11:06:37 +02:00
|
|
|
with:
|
2023-10-19 13:14:31 +02:00
|
|
|
project-url: ${{ env.PROJECT_URL }}
|
2023-10-19 11:06:37 +02: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 14:29:21 +02:00
|
|
|
field-keys: Workstream,module
|
|
|
|
field-values: Element-R,web
|
2023-10-19 11:06:37 +02:00
|
|
|
env:
|
2023-12-12 11:31:44 +01:00
|
|
|
PROJECT_URL: https://github.com/orgs/element-hq/projects/76
|