From 921020a07733d04d75bf55e49bec7ee51d06bcd3 Mon Sep 17 00:00:00 2001 From: Fernando Ayats Date: Tue, 3 Jun 2025 10:22:42 +0200 Subject: [PATCH] Allow configuring a custom spack repository --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 471d5f3..16f4728 100644 --- a/action.yml +++ b/action.yml @@ -21,13 +21,17 @@ inputs: description: "Path to install Spack to" required: false default: "spack" + repository: + description: "Repository to use as Spack" + required: false + default: "spack/spack" runs: using: "composite" steps: - name: Checkout Spack uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: - repository: spack/spack + repository: ${{ inputs.repository }} path: ${{ inputs.path }} ref: ${{ inputs.ref }}