-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: Trigger CI also on PRs to develop/* branches #1367
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1367 +/- ##
=======================================
Coverage 47.83% 47.83%
=======================================
Files 380 380
Lines 20149 20149
Branches 9371 9371
=======================================
Hits 9638 9638
Misses 4063 4063
Partials 6448 6448 📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-develop/v19.x develop/v19.x
# Navigate to the new working tree
cd .worktrees/backport-develop/v19.x
# Create a new branch
git switch --create backport-1367-to-develop/v19.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 f956eb3e3f54362126fbd31572541f391a0f06ef
# Push it to GitHub
git push --set-upstream origin backport-1367-to-develop/v19.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-develop/v19.x Then, create a pull request where the |
This is needed for backporting.
This is needed for backporting.