Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions .github/workflows/skill-evals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,28 @@ on:
- "TraceLens/Agent/Analysis/skills/**"
- ".github/workflows/skill-evals.yml"
workflow_dispatch:
inputs:
structural:
description: Structural evals
type: choice
options:
- required
- off
default: required
routing:
description: Routing evals
type: choice
options:
- required
- off
default: off
behavioral:
description: Behavioral evals
type: choice
options:
- required
- off
default: off

permissions:
contents: read
Expand All @@ -27,7 +49,6 @@ jobs:
with:
skills: TraceLens/Agent/Analysis/skills/analysis-orchestrator
# Each step can be set to `required`, `optional`, or `off`.
# On amd/skills, all steps are required.
structural: required
routing: required
behavioral: required
structural: ${{ github.event.inputs.structural || 'required' }}
routing: ${{ github.event.inputs.routing || 'off' }}
behavioral: ${{ github.event.inputs.behavioral || 'off' }}
Loading