2022-06-06 11:03:24 +02:00
|
|
|
name: Move issued assigned to specific team members to their boards
|
|
|
|
|
|
|
|
on:
|
2022-12-09 13:28:29 +01:00
|
|
|
issues:
|
|
|
|
types: [assigned]
|
2022-06-06 11:03:24 +02:00
|
|
|
|
|
|
|
jobs:
|
2022-12-09 13:28:29 +01:00
|
|
|
web-app-team:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: |
|
|
|
|
contains(github.event.issue.assignees.*.login, 't3chguy') ||
|
2023-01-30 14:35:56 +01:00
|
|
|
contains(github.event.issue.assignees.*.login, 'andybalaam') ||
|
|
|
|
contains(github.event.issue.assignees.*.login, 'justjanne')
|
2022-12-09 13:28:29 +01:00
|
|
|
steps:
|
2023-04-26 20:16:50 +02:00
|
|
|
- uses: actions/add-to-project@main
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
2023-04-26 20:16:50 +02:00
|
|
|
project-url: https://github.com/orgs/vector-im/projects/67
|
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|