From b71d8daf48b950bfa49521f21614318a5352eb0e Mon Sep 17 00:00:00 2001 From: Alison Joseph Date: Thu, 13 Jun 2024 09:59:29 -0500 Subject: [PATCH] chore: update add to project workflow to add AI4UX --- .github/workflows/add-to-project.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index edc72b75fcdb..7b298d58080a 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -11,8 +11,10 @@ env: DESIGN_SYSTEM_PROJECT_URL: https://github.com/orgs/carbon-design-system/projects/39 PROPOSALS_PROJECT_URL: https://github.com/orgs/carbon-design-system/projects/51 TYPESCRIPT_PROJECT_URL: https://github.com/orgs/carbon-design-system/projects/53 + AI4UX_PROJECT_URL: https://github.com/orgs/carbon-design-system/projects/82 LABEL_ENHANCEMENT: 'type: enhancement 💡' LABEL_TYPESCRIPT: 'area: typescript' + LABEL_AI4UX: 'area: AI4UX' jobs: add-to-proposals-project: @@ -35,6 +37,16 @@ jobs: project-url: ${{ env.TYPESCRIPT_PROJECT_URL }} github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + add-to-ai4ux-project: + name: Add issue with AI4UX label to the AI4UX project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@9bfe908f2eaa7ba10340b31e314148fcfe6a2458 # v1.0.1 + with: + labeled: ${{ env.LABEL_AI4UX }} + project-url: ${{ env.AI4UX_PROJECT_URL }} + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + add-to-design-system-project: name: Add issue to the Design System project runs-on: ubuntu-latest