[Feature Request]: Provide support for buttons that are both disabled and focussable #21559
This file contains hidden or 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: Add To Project | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| workflow_call: | |
| secrets: | |
| ADD_TO_PROJECT_PAT: | |
| required: true | |
| 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 | |
| AI4UX_PROJECT_URL: https://github.com/orgs/carbon-design-system/projects/82 | |
| LABEL_ENHANCEMENT: 'type: enhancement 💡' | |
| LABEL_AI4UX: 'area: AI4UX' | |
| jobs: | |
| add-to-proposals-project: | |
| name: Add issue with enhancement label to the Proposals project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 | |
| with: | |
| labeled: ${{ env.LABEL_ENHANCEMENT }} | |
| project-url: ${{ env.PROPOSALS_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@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 | |
| 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 | |
| steps: | |
| - uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 | |
| with: | |
| labeled: ${{ env.LABEL_ENHANCEMENT }} | |
| label-operator: NOT | |
| project-url: ${{ env.DESIGN_SYSTEM_PROJECT_URL }} | |
| github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |