From 57ebba1e723022811bccfab9d0d53effc046ce25 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 6 Sep 2025 13:25:01 -0700 Subject: [PATCH] fix: replace invalid return with exit 0 in backport workflow (#5401) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes shell script error where 'return' was used outside of a function. In shell scripts, 'exit 0' should be used to exit with success status. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- .github/workflows/backport.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml index 0b302e497..3f4b93242 100644 --- a/.github/workflows/backport.yaml +++ b/.github/workflows/backport.yaml @@ -36,7 +36,7 @@ jobs: if [ -z "$EXISTING_BACKPORTS" ]; then echo "skip=false" >> $GITHUB_OUTPUT - return + exit 0 fi echo "Found existing backport PRs:"