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.
1 parent 1dcc1c5 commit 4460b32Copy full SHA for 4460b32
.github/workflows/submodule_auto_pr.yml
@@ -79,7 +79,9 @@ jobs:
79
env:
80
GH_TOKEN: ${{ secrets.DUCKDBLABS_BOT_TOKEN }}
81
run: |
82
- # First commit and push
+ # No need to do anything if the submodule is already at the given sha
83
+ [[ `git status --porcelain -- external/duckdb` == "" ]] && exit 0
84
+ # We have changes. Commit and push
85
git add external/duckdb
86
git commit -m "Bump submodule"
87
git push --force origin vendoring-${{ github.ref_name }}
0 commit comments