Merge pull request #15194 from hakman/fix_depup

Fix error in dependencies update workflow
This commit is contained in:
Kubernetes Prow Robot 2023-03-06 03:52:30 -08:00 committed by GitHub
commit dc354c7d47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,9 @@ jobs:
id: update_deps
run: |
make depup
echo "changes=$(git status --porcelain)" >> $GITHUB_OUTPUT
echo 'changes<<EOF' >> $GITHUB_OUTPUT
git status --porcelain >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Create PR
if: ${{ steps.update_deps.outputs.changes != '' }}
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04