From e526705062792388a2e6171ce63ca4197f334fe5 Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Thu, 23 Jul 2026 09:26:53 +0200 Subject: [PATCH] ci: fix failing Differential ShellCheck workflow Differential ShellCheck requires a specified branch in the workflow file. To avoid this error: ``` fatal: Invalid revision range e7d05fd3533403e8aa79d4c22b31d106ec3877ac..cdb538f5c530addbc82c353a94e5d29844d043d4 ``` --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 20922cc4..76258d15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,9 @@ name: Test on: push: + branches: [ main, v5 ] pull_request: + branches: [ main, v5 ] schedule: [{ cron: "0 0 10 * *" }] # monthly https://crontab.guru/#0_0_10_*_* workflow_dispatch: