Use small model alias in inline sub-agent blocks
#951
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
| name: Smoke Trigger | ||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| types: [labeled] | ||
| jobs: | ||
| call-smoke-workflow-call: | ||
|
Check failure on line 9 in .github/workflows/smoke-trigger.yml
|
||
| if: github.event_name == 'workflow_dispatch' || github.event.label.name == 'smoke-workflow-call' | ||
| uses: ./.github/workflows/smoke-workflow-call.lock.yml | ||
| secrets: inherit | ||
| permissions: | ||
| contents: read | ||
| discussions: write | ||
| issues: write | ||
| pull-requests: write | ||