From f47fe535f5f17d91ed78d83c09a3575d78eaccf4 Mon Sep 17 00:00:00 2001 From: Freek van Rijt Date: Mon, 21 Oct 2024 14:37:59 +0200 Subject: [PATCH] ci: fix missing environment var in scheduled builds remove reference to a removed environment variable. as the workflow runs on the current repo, it shouldn't be needed. --- .github/workflows/schedule-trigger.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/schedule-trigger.yml b/.github/workflows/schedule-trigger.yml index ff9286f..f01d617 100644 --- a/.github/workflows/schedule-trigger.yml +++ b/.github/workflows/schedule-trigger.yml @@ -61,7 +61,7 @@ jobs: shell: bash #language=bash run: | - gh workflow run --repo "$REPOSITORY" "$WORKFLOW_NAME.yml" + gh workflow run "$WORKFLOW_NAME.yml" echo "Job '$WORKFLOW_NAME' dispatched."