Skip to content

Commit 652c050

Browse files
authored
Add issues labelled P-Web to the triage board (#329)
1 parent 5d2c3b3 commit 652c050

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/triage-labelled.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Move labelled issues to the correct projects
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
workflow_call:
7+
secrets:
8+
ELEMENT_BOT_TOKEN:
9+
required: true
10+
11+
jobs:
12+
web:
13+
name: Add issues labelled for the web platform to the web triage project
14+
runs-on: ubuntu-latest
15+
if: >
16+
contains(github.event.issue.labels.*.name, 'P-Web')
17+
steps:
18+
- uses: actions/add-to-project@main
19+
with:
20+
project-url: https://github.com/orgs/element-hq/projects/120
21+
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}

0 commit comments

Comments
 (0)