diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 15100884db..3891c39a73 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -39,10 +39,13 @@ jobs: git config user.signingkey "${{ runner.temp }}/signing_key" msg="bump: $(git status | grep modified | sed -r 's@.+/([^/]+)/[^/]+\n?@\1 @g' | tr -d '\n')" git commit -S -a -m "$msg" - # git format-patch HEAD^ - # git checkout f37 - # git apply *.patch || true - # git add * - # git commit -S -a -m "$msg" + f37 () { + git format-patch HEAD^ + git checkout f37 + git apply *.patch || true + git add * + git commit -S -a -m "$msg" + } + f37 || true git push -u origin --all fi