mirror of https://github.com/kubernetes/kops.git
Merge pull request #15194 from hakman/fix_depup
Fix error in dependencies update workflow
This commit is contained in:
commit
dc354c7d47
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue