mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 09:58:11 +08:00
03a1d89785
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
21 lines
683 B
YAML
21 lines
683 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, 'andybalaam') ||
|
|
contains(github.event.issue.assignees.*.login, 'MidhunSureshR')
|
|
steps:
|
|
- uses: actions/add-to-project@main
|
|
with:
|
|
project-url: https://github.com/orgs/element-hq/projects/67
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|