element-web/.github/workflows/triage-assigned.yml

19 lines
632 B
YAML
Raw Normal View History

name: Move issued assigned to specific team members to their boards
on:
2022-12-09 13:28:29 +01:00
issues:
types: [assigned]
jobs:
2022-12-09 13:28:29 +01:00
web-app-team:
runs-on: ubuntu-latest
if: |
contains(github.event.issue.assignees.*.login, 't3chguy') ||
contains(github.event.issue.assignees.*.login, 'andybalaam') ||
contains(github.event.issue.assignees.*.login, 'MidhunSureshR')
2022-12-09 13:28:29 +01:00
steps:
- 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/67
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}