From 6dbf3e4b9a6138ca1b9ba25b3dc53dd6ac693ca6 Mon Sep 17 00:00:00 2001 From: James Loh Date: Thu, 10 Jul 2025 16:43:46 +1000 Subject: [PATCH] Fix tests not running on renovate branches no ref - This prevented renovate auto-merging the digest pin commits --- .github/workflows/shellcheck.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index d19287d..ccad6dc 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -5,12 +5,13 @@ on: push: branches: - main + - renovate/* jobs: shellcheck: name: ShellCheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - - name: Run ShellCheck - run: find . -type f -name "*.sh" -exec shellcheck {} + + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + - name: Run ShellCheck + run: find . -type f -name "*.sh" -exec shellcheck {} +