mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-25 19:21:18 +01:00
22 lines
800 B
YAML
22 lines
800 B
YAML
name: Move issued assigned to specific team members to their boards
|
|
|
|
on:
|
|
issues:
|
|
types: [assigned]
|
|
|
|
permissions: {} # We use ELEMENT_BOT_TOKEN instead
|
|
|
|
jobs:
|
|
web-app-team:
|
|
runs-on: ubuntu-24.04
|
|
if: |
|
|
contains(github.event.issue.assignees.*.login, 't3chguy') ||
|
|
contains(github.event.issue.assignees.*.login, 'florianduros') ||
|
|
contains(github.event.issue.assignees.*.login, 'dbkr') ||
|
|
contains(github.event.issue.assignees.*.login, 'MidhunSureshR')
|
|
steps:
|
|
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/element-hq/projects/67
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|