diff --git a/.github/workflows/update-nightly.yml b/.github/workflows/update-nightly.yml index 1ead96a3f6..db4d5ba603 100644 --- a/.github/workflows/update-nightly.yml +++ b/.github/workflows/update-nightly.yml @@ -38,6 +38,7 @@ jobs: git config user.signingkey "${{ runner.temp }}/signing_key" msg="bump(nightly): $(git status | grep modified | sed -r 's@.+/([^/]+)/[^/]+\n?@\1 @g' | tr -d '\n')" git commit -S -a -m "$msg" + git push -u origin f39 copy_over () { git format-patch HEAD^ git checkout $1 @@ -45,10 +46,10 @@ jobs: rm *.patch git add * git commit -S -a -m "$msg" + git push -u origin $1 } copy_over f37 || true copy_over f38 || true copy_over f40 || true copy_over frawhide || true - git push -u origin --all fi diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 3203d2de6e..3414d474b1 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -39,6 +39,7 @@ 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 push -u origin f39 copy_over () { git format-patch HEAD^ git checkout $1 @@ -46,10 +47,10 @@ jobs: rm *.patch git add * git commit -S -a -m "$msg" + git push -u origin $1 } copy_over f37 || true copy_over f38 || true copy_over f40 || true copy_over frawhide || true - git push -u origin --all fi