Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 240e5d0

Browse files
committed
Parameterize ref
1 parent f875067 commit 240e5d0

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/selftest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ jobs:
77
steps:
88
- uses: actions/checkout@v4
99
- uses: ./
10+
with:
11+
controller-ref: main
12+
jumpstarter-ref: main

action.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
name: 'Jumpstarter end-to-end testing'
2+
inputs:
3+
controller-ref:
4+
description: 'jumpstarter-dev/jumpstarter-controller git ref'
5+
required: true
6+
jumpstarter-ref:
7+
description: 'jumpstarter-dev/jumpstarter git ref'
8+
required: true
29
runs:
310
using: "composite"
411
steps:
@@ -12,13 +19,13 @@ runs:
1219
uses: actions/checkout@v4
1320
with:
1421
repository: jumpstarter-dev/jumpstarter-controller
15-
ref: main # TODO: parameterize
22+
ref: ${{ inputs.controller-ref }}
1623
path: controller
1724
- name: Checkout jumpstarter
1825
uses: actions/checkout@v4
1926
with:
2027
repository: jumpstarter-dev/jumpstarter
21-
ref: main # TODO: parameterize
28+
ref: ${{ inputs.jumpstarter-ref }}
2229
path: jumpstarter
2330
- name: Deploy jumpstarter controller
2431
shell: bash

0 commit comments

Comments
 (0)