Plex is not up to date, package is too large #33689
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- 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 |