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
33 changes: 12 additions & 21 deletions .github/workflows/skill-evals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,17 @@ on:
workflow_dispatch:
inputs:
structural:
description: Structural evals
type: choice
options:
- required
- off
default: required
description: Structural Tests
type: boolean
default: true
routing:
description: Routing evals
type: choice
options:
- required
- off
default: off
description: Routing Tests
type: boolean
default: false
behavioral:
description: Behavioral evals
type: choice
options:
- required
- off
default: off
description: Behavioral Tests
type: boolean
default: false

permissions:
contents: read
Expand All @@ -49,6 +40,6 @@ jobs:
with:
skills: TraceLens/Agent/Analysis/skills/analysis-orchestrator
# Each step can be set to `required`, `optional`, or `off`.
structural: ${{ github.event.inputs.structural || 'required' }}
routing: ${{ github.event.inputs.routing || 'off' }}
behavioral: ${{ github.event.inputs.behavioral || 'off' }}
structural: ${{ github.event_name != 'workflow_dispatch' && 'required' || inputs.structural && 'required' || 'off' }}
routing: ${{ github.event_name == 'workflow_dispatch' && inputs.routing && 'required' || 'off' }}
behavioral: ${{ github.event_name == 'workflow_dispatch' && inputs.behavioral && 'required' || 'off' }}
Loading