[Card]: Consolidate SSW card guidance with C4IP productive card 🌳 #3692
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |