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

19 lines
606 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, 'turt2live')
steps:
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
with:
project: Web App Team
column: "In Progress"
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}