Skip to content

Commit e4ddea4

Browse files
committed
Introduced env: with DEFAULT_CLI_BRANCH set to REL25_01,
now used as the default for scheduled builds.
1 parent 04ba2c7 commit e4ddea4

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/daily-build-devel-amd8.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Stable Daily Build Devel - amd8
22

3+
env:
4+
DEFAULT_CLI_BRANCH: "REL25_01"
5+
36
on:
47
workflow_dispatch:
58
inputs:
@@ -57,7 +60,7 @@ jobs:
5760
if [[ "${{ github.event_name }}" == "schedule" ]]; then
5861
PREFIX="$TODAY"
5962
CLEAN_FLAG=""
60-
SELECTED_CLI_BRANCH="${{ inputs.cli_branch }}"
63+
SELECTED_CLI_BRANCH="${DEFAULT_CLI_BRANCH}"
6164
echo "Scheduled run: Prefix=$PREFIX, Clean flag not set, Branch=$SELECTED_CLI_BRANCH"
6265
else
6366
# Manually triggered workflow

.github/workflows/daily-build-devel-arm9.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Stable Daily Build Devel - arm9
22

3+
env:
4+
DEFAULT_CLI_BRANCH: "REL25_01"
5+
36
on:
47
workflow_dispatch:
58
inputs:
@@ -57,7 +60,7 @@ jobs:
5760
if [[ "${{ github.event_name }}" == "schedule" ]]; then
5861
PREFIX="$TODAY"
5962
CLEAN_FLAG=""
60-
SELECTED_CLI_BRANCH="${{ inputs.cli_branch }}"
63+
SELECTED_CLI_BRANCH="${DEFAULT_CLI_BRANCH}"
6164
echo "Scheduled run: Prefix=$PREFIX, Clean flag not set, Branch=$SELECTED_CLI_BRANCH"
6265
else
6366
# Manually triggered workflow

0 commit comments

Comments
 (0)