You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# back-merge base-branch to all feature branches: list all remote feature branches that are not a pull request
for branch in $(git branch -r --merged | grep "origin/feat/" | awk '{print $1}'| sed 's/^origin\///'); do
git checkout $branch
git merge origin/$1 -Xours --no-commit
git commit -m "chore(release): 🔧 preparations for next release with a back-merge [skip ci]" --author="github-actions[bot] <github-actions[bot]@users.noreply.github.com>"