feat(mlx): cluster-join/cluster-detach lifecycle commands #238
Workflow file for this run
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
| # AI PR care: dependency risk review + release highlights. | |
| # | |
| # - cc-dep-review: one AI risk-assessment comment on Renovate major/minor PRs. | |
| # - cc-release-notes: sticky AI highlights comment on release-please PRs, | |
| # refreshed per head SHA. | |
| # | |
| # Gates in the reusable workflows keep non-matching PRs at github-script cost. | |
| # Permissions are job-scoped and credentials are passed explicitly (zizmor: | |
| # excessive-permissions, secrets-inherit). No concurrency block on purpose: a | |
| # caller sharing the reusable workflow's exact concurrency group causes an | |
| # opaque 0-job startup_failure. | |
| name: AI PR Care | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| dep-review: | |
| if: github.event.action == 'opened' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| pull-requests: write | |
| uses: dryvist/ai-workflows/.github/workflows/cc-dep-review.yml@main | |
| secrets: | |
| GH_ACTION_AI_API_KEY: ${{ secrets.GH_ACTION_AI_API_KEY }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| release-notes: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| pull-requests: write | |
| uses: dryvist/ai-workflows/.github/workflows/cc-release-notes.yml@main | |
| secrets: | |
| GH_ACTION_AI_API_KEY: ${{ secrets.GH_ACTION_AI_API_KEY }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |