2022-06-06 12:03:24 +03: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') ||
|
2023-01-30 16:35:56 +03:00
|
|
|
contains(github.event.issue.assignees.*.login, 'andybalaam') ||
|
2023-10-24 14:02:49 +03:00
|
|
|
contains(github.event.issue.assignees.*.login, 'MidhunSureshR')
|
2022-06-06 12:03:24 +03:00
|
|
|
steps:
|
2023-04-26 21:16:50 +03:00
|
|
|
- uses: actions/add-to-project@main
|
2022-06-06 12:03:24 +03:00
|
|
|
with:
|
2023-12-12 13:31:44 +03:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/67
|
2023-04-26 21:16:50 +03:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|