-
Notifications
You must be signed in to change notification settings - Fork 139
34 lines (32 loc) · 1.2 KB
/
triage-labeled-issues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Triages labeled issues by adding them to a specific project field
on:
issues:
types: [ labeled ]
jobs:
move-ts-issues:
if: ${{contains(github.event.label.name, format('area{0} typescript', ':'))}}
uses: carbon-design-system/.github/.github/workflows/move-issue-to-project-and-set-fields.yml@main
with:
field: 'Area'
field_option: '🟦 Typescript'
project_number: '65'
secrets:
token: ${{ secrets.ADD_TO_PROJECT_SET_FIELD }}
move-migration-issues:
if: ${{contains(github.event.label.name, format('area{0} migration ➡️', ':'))}}
uses: carbon-design-system/.github/.github/workflows/move-issue-to-project-and-set-fields.yml@main
with:
field: 'Area'
field_option: '🗺 Migration'
project_number: '65'
secrets:
token: ${{ secrets.ADD_TO_PROJECT_SET_FIELD }}
move-a11y-issues:
if: ${{contains(github.event.label.name, format('type{0} a11y ♿', ':'))}}
uses: carbon-design-system/.github/.github/workflows/move-issue-to-project-and-set-fields.yml@main
with:
field: 'Area'
field_option: '♿️ Accessibility'
project_number: '65'
secrets:
token: ${{ secrets.ADD_TO_PROJECT_SET_FIELD }}