2021-11-09 17:35:56 +08:00
|
|
|
name: Move labelled issues to correct boards and columns
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
2022-01-04 18:19:30 +08:00
|
|
|
types: [labeled]
|
2021-12-18 00:18:39 +08:00
|
|
|
|
2021-11-09 17:35:56 +08:00
|
|
|
jobs:
|
2022-01-16 07:26:18 +08:00
|
|
|
apply_Z-Labs_label:
|
|
|
|
name: Add Z-Labs label for features behind labs flags
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-06-01 17:04:47 +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-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 21:21:14 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Tags') ||
|
|
|
|
contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor')
|
2022-01-16 07:26:18 +08: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 22:05:37 +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:
|
|
|
|
- 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']
|
|
|
|
})
|
|
|
|
|
2022-07-18 22:14:34 +08:00
|
|
|
add_design_issues_to_project:
|
|
|
|
name: X-Needs-Design to Design project board
|
2021-11-09 17:35:56 +08:00
|
|
|
runs-on: ubuntu-latest
|
2022-01-04 18:19:30 +08:00
|
|
|
# Skip in forks
|
|
|
|
if: >
|
2023-12-13 18:09:03 +08:00
|
|
|
github.repository == 'element-hq/element-android' &&
|
2022-10-14 18:49: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')) ||
|
2022-10-21 16:59:40 +08:00
|
|
|
(contains(github.event.issue.labels.*.name, 'S-Major') &&
|
|
|
|
contains(github.event.issue.labels.*.name, 'O-Frequent')) ||
|
2022-10-14 18:49:24 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'A11y'))
|
2021-11-09 17:35:56 +08:00
|
|
|
steps:
|
2023-04-25 18:57:05 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2021-11-09 17:35:56 +08:00
|
|
|
with:
|
2023-12-13 18:09:03 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/18
|
2023-04-25 18:57:05 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2021-11-09 17:35:56 +08:00
|
|
|
|
2022-01-16 07:26:18 +08:00
|
|
|
add_product_issues:
|
2023-04-26 17:50:20 +08:00
|
|
|
name: X-Needs-Product to Product project board
|
2022-01-16 07:26:18 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2022-06-01 17:04:47 +08:00
|
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Product')
|
2022-01-16 07:26:18 +08:00
|
|
|
steps:
|
2023-04-25 18:57:05 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2022-01-16 07:26:18 +08:00
|
|
|
with:
|
2023-12-13 18:09:03 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/28
|
2023-04-25 18:57:05 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2022-04-25 17:00:13 +08:00
|
|
|
|