mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 18:38:41 +08:00
20 lines
682 B
YAML
20 lines
682 B
YAML
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, 'andybalaam') ||
|
|
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 }}
|