From baa1efd5bcdf1b1395bf763a7025ba471a257311 Mon Sep 17 00:00:00 2001 From: Jonathan Rios Date: Mon, 29 Dec 2025 16:00:02 +0100 Subject: [PATCH] LITE-33302 Fix bump action outdated write file --- .github/workflows/bump.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml index aff2ec9..ef56bd5 100644 --- a/.github/workflows/bump.yml +++ b/.github/workflows/bump.yml @@ -34,6 +34,10 @@ jobs: echo "has_updates=true" >> $GITHUB_OUTPUT echo "Outdated packages found:" cat outdated.txt + + echo "outdated<> $GITHUB_OUTPUT + cat outdated.txt >> $GITHUB_OUTPUT + echo "EOF" >> $GITHUB_OUTPUT else echo "has_updates=false" >> $GITHUB_OUTPUT echo "No outdated packages found" @@ -64,6 +68,8 @@ jobs: else echo "has_changes=true" >> $GITHUB_OUTPUT fi + # Remove the temporary file so it is not included in the PR + rm outdated.txt - name: Create Pull Request if: steps.check-outdated.outputs.has_updates == 'true' && steps.check-changes.outputs.has_changes == 'true' @@ -92,3 +98,4 @@ jobs: labels: | dependencies automated + reviewers: ${{ vars.PR_REVIEWERS }}