Skip to content

Commit 2f774dd

Browse files
authored
Merge pull request #244 from cloudblue/LITE-33302-bump-python-version
LITE-33302 Fix bump action outdated write file
2 parents e8daa95 + baa1efd commit 2f774dd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/bump.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
echo "has_updates=true" >> $GITHUB_OUTPUT
3535
echo "Outdated packages found:"
3636
cat outdated.txt
37+
38+
echo "outdated<<EOF" >> $GITHUB_OUTPUT
39+
cat outdated.txt >> $GITHUB_OUTPUT
40+
echo "EOF" >> $GITHUB_OUTPUT
3741
else
3842
echo "has_updates=false" >> $GITHUB_OUTPUT
3943
echo "No outdated packages found"
@@ -64,6 +68,8 @@ jobs:
6468
else
6569
echo "has_changes=true" >> $GITHUB_OUTPUT
6670
fi
71+
# Remove the temporary file so it is not included in the PR
72+
rm outdated.txt
6773
6874
- name: Create Pull Request
6975
if: steps.check-outdated.outputs.has_updates == 'true' && steps.check-changes.outputs.has_changes == 'true'
@@ -92,3 +98,4 @@ jobs:
9298
labels: |
9399
dependencies
94100
automated
101+
reviewers: ${{ vars.PR_REVIEWERS }}

0 commit comments

Comments
 (0)