[Bug]: ContentSwitcher
docs do not align with component usage
#36098
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: Issue Triage | |
on: | |
issues: | |
types: [opened] | |
issue_comment: | |
types: [created] | |
workflow_call: | |
secrets: | |
APP_ID: | |
required: true | |
APP_PRIVATE_KEY: | |
required: true | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Generate token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a #v2.1.0 | |
id: generate_token | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- uses: carbon-design-system/carbon/actions/issues@main | |
with: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
enabled: true |