Beam/.github/workflows/triage_incoming.yml

29 lines
797 B
YAML
Raw Normal View History

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: >
github.repository == 'element-hq/element-x-ios'
2023-02-14 22:49:16 +00:00
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/element-hq/projects/81
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
move_element_x_issues:
name: ElementX issues to ElementX project board
runs-on: ubuntu-latest
# Skip in forks
if: >
github.repository == 'element-hq/element-x-ios'
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/element-hq/projects/43
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}