We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8daa95 + baa1efd commit 2f774ddCopy full SHA for 2f774dd
.github/workflows/bump.yml
@@ -34,6 +34,10 @@ jobs:
34
echo "has_updates=true" >> $GITHUB_OUTPUT
35
echo "Outdated packages found:"
36
cat outdated.txt
37
+
38
+ echo "outdated<<EOF" >> $GITHUB_OUTPUT
39
+ cat outdated.txt >> $GITHUB_OUTPUT
40
+ echo "EOF" >> $GITHUB_OUTPUT
41
else
42
echo "has_updates=false" >> $GITHUB_OUTPUT
43
echo "No outdated packages found"
@@ -64,6 +68,8 @@ jobs:
64
68
65
69
echo "has_changes=true" >> $GITHUB_OUTPUT
66
70
fi
71
+ # Remove the temporary file so it is not included in the PR
72
+ rm outdated.txt
67
73
74
- name: Create Pull Request
75
if: steps.check-outdated.outputs.has_updates == 'true' && steps.check-changes.outputs.has_changes == 'true'
@@ -92,3 +98,4 @@ jobs:
92
98
labels: |
93
99
dependencies
94
100
automated
101
+ reviewers: ${{ vars.PR_REVIEWERS }}
0 commit comments