diff --git a/.github/workflows/update-nightly.yml b/.github/workflows/update-nightly.yml index db4d5ba603..1ead96a3f6 100644 --- a/.github/workflows/update-nightly.yml +++ b/.github/workflows/update-nightly.yml @@ -38,7 +38,6 @@ 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 @@ -46,10 +45,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 3414d474b1..3203d2de6e 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -39,7 +39,6 @@ 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 @@ -47,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