mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
665f532301
* Update all * Upgrade @types * Update lockfile * Make typescript happier * Make webpack happier, pin postcss-hexrgba Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
19 lines
540 B
YAML
19 lines
540 B
YAML
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') ||
|
|
contains(github.event.issue.assignees.*.login, 'turt2live')
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@be108970955040d35dd6d053c3aff3faaf678026
|
|
with:
|
|
project: Web App Team
|
|
column: "In Progress"
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|