From 770ba6dcdc4457b91aa1de75bc8beb392c33f766 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:30:31 +0200 Subject: [PATCH] Pass repository and branch to release tests workflow (#108) (#117) --- .github/workflows/run-release-tests.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-release-tests.yaml b/.github/workflows/run-release-tests.yaml index e558977..39d634b 100644 --- a/.github/workflows/run-release-tests.yaml +++ b/.github/workflows/run-release-tests.yaml @@ -10,6 +10,14 @@ on: type: string workflow_call: inputs: + source: + description: Repository with tests (current) + required: false + type: string + branch: + description: Branch with tests (master) + required: false + type: string codexdockerimage: description: "Codex Docker image (example: 'codexstorage/nim-codex:0.1.8-dist-tests')" required: true @@ -20,7 +28,6 @@ on: type: string default: '' - env: SOURCE: ${{ format('{0}/{1}', github.server_url, github.repository) }} BRANCH: ${{ github.ref_name }}