From 00e13b7760d5c6fd86bd617892eee462d3df7398 Mon Sep 17 00:00:00 2001 From: Bastian Krause Date: Wed, 14 Aug 2024 11:41:14 +0200 Subject: [PATCH] github/workflows/scheduled-unit-tests: drop scheduled docker tests on stable-23.0 Adding the stable branches here is problematic: GitHub uses the workflow definitions from the default branch (master). The workflow might not match the stable branch. So drop it here. As a replacement, the current stable branch is tested on a labgrid fork that has the stable branch set as its default branch, so the workflow is maintained in the same branch as the code. Signed-off-by: Bastian Krause --- .github/workflows/scheduled-unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scheduled-unit-tests.yml b/.github/workflows/scheduled-unit-tests.yml index 096e7aee6..87b4474db 100644 --- a/.github/workflows/scheduled-unit-tests.yml +++ b/.github/workflows/scheduled-unit-tests.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - branch: ['master', 'stable-23.0'] + branch: ['master'] uses: ./.github/workflows/reusable-unit-tests-docker.yml with: branch: ${{ matrix.branch }}