Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
echo "has_updates=true" >> $GITHUB_OUTPUT
echo "Outdated packages found:"
cat outdated.txt

echo "outdated<<EOF" >> $GITHUB_OUTPUT
cat outdated.txt >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
else
echo "has_updates=false" >> $GITHUB_OUTPUT
echo "No outdated packages found"
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -92,3 +98,4 @@ jobs:
labels: |
dependencies
automated
reviewers: ${{ vars.PR_REVIEWERS }}