2022-06-06 11:03:24 +02:00
|
|
|
name: Move issued assigned to specific team members to their boards
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [ assigned ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
web-app-team:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: |
|
|
|
|
contains(github.event.issue.assignees.*.login, 't3chguy') ||
|
|
|
|
contains(github.event.issue.assignees.*.login, 'turt2live')
|
|
|
|
steps:
|
2022-09-10 05:03:46 +02:00
|
|
|
- uses: alex-page/github-project-automation-plus@be108970955040d35dd6d053c3aff3faaf678026
|
2022-06-06 11:03:24 +02:00
|
|
|
with:
|
|
|
|
project: Web App Team
|
2022-06-14 23:03:18 +02:00
|
|
|
column: "In Progress"
|
2022-06-06 11:03:24 +02:00
|
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|