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
7 changes: 6 additions & 1 deletion .github/workflows/reusable-lab-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ name: Lab Validation (reusable)
on:
workflow_call:
inputs:
batfish_repository:
description: "GitHub repository for Batfish (e.g., batfish/batfish or user/batfish for forks)"
required: false
default: "batfish/batfish"
type: string
batfish_ref:
description: "Git ref for Batfish version to test"
required: false
Expand Down Expand Up @@ -68,7 +73,7 @@ jobs:
- name: Checkout Batfish
uses: actions/checkout@v4
with:
repository: batfish/batfish
repository: ${{ inputs.batfish_repository || 'batfish/batfish' }}
path: batfish
ref: ${{ inputs.batfish_ref || 'master' }}

Expand Down