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/opentitan_regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ on:
pull_request:
workflow_dispatch:
inputs:
opentitan_repo:
description: OpenTitan repository to be checked out
required: true
default: lowRISC/opentitan
type: string
opentitan_ref:
description: Branch, tag, or commit ref from OpenTitan to test
required: true
Expand All @@ -24,7 +29,7 @@ jobs:
- name: Checkout OpenTitan
uses: actions/checkout@v5
with:
repository: lowRISC/opentitan
repository: ${{ inputs.opentitan_repo || 'lowRISC/opentitan' }}
ref: ${{ inputs.opentitan_ref || 'earlgrey_1.0.0' }}

- name: Prepare OpenTitan environment
Expand Down
Loading