2022-06-06 17:03:24 +08:00
|
|
|
name: Move issued assigned to specific team members to their boards
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [assigned]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
web-app-team:
|
2024-10-17 18:10:32 +08:00
|
|
|
runs-on: ubuntu-24.04
|
2022-06-06 17:03:24 +08:00
|
|
|
if: |
|
|
|
|
contains(github.event.issue.assignees.*.login, 't3chguy') ||
|
2023-01-30 21:35:56 +08:00
|
|
|
contains(github.event.issue.assignees.*.login, 'andybalaam') ||
|
2023-10-24 19:02:49 +08:00
|
|
|
contains(github.event.issue.assignees.*.login, 'MidhunSureshR')
|
2022-06-06 17:03:24 +08:00
|
|
|
steps:
|
2023-04-27 02:16:50 +08:00
|
|
|
- uses: actions/add-to-project@main
|
2022-06-06 17:03:24 +08:00
|
|
|
with:
|
2023-12-12 18:31:44 +08:00
|
|
|
project-url: https://github.com/orgs/element-hq/projects/67
|
2023-04-27 02:16:50 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|