2023-02-14 22:49:16 +00:00
|
|
|
name: Move new issues onto Issue triage board
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened]
|
|
|
|
|
|
|
|
jobs:
|
2023-02-27 11:51:46 +00:00
|
|
|
add_to_triage:
|
2023-02-14 22:49:16 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-02-27 11:51:46 +00:00
|
|
|
if: >
|
2023-12-12 14:34:44 +00:00
|
|
|
github.repository == 'element-hq/element-x-ios'
|
2023-02-14 22:49:16 +00:00
|
|
|
steps:
|
2023-06-30 09:23:07 +01:00
|
|
|
- uses: actions/add-to-project@main
|
|
|
|
with:
|
2023-12-12 14:34:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/81
|
2023-06-30 09:23:07 +01:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2023-02-27 17:55:41 +00:00
|
|
|
|
|
|
|
move_element_x_issues:
|
|
|
|
name: ElementX issues to ElementX project board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Skip in forks
|
|
|
|
if: >
|
2023-12-12 14:34:44 +00:00
|
|
|
github.repository == 'element-hq/element-x-ios'
|
2023-02-27 17:55:41 +00:00
|
|
|
steps:
|
2023-06-30 09:23:07 +01:00
|
|
|
- uses: actions/add-to-project@main
|
|
|
|
with:
|
2023-12-12 14:34:44 +00:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/43
|
2023-06-30 09:23:07 +01:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|