Closed mattdibi closed 1 month ago
Changes tested working on the documentation branch
Merging without waiting for Jenkins CI to pass since it doesn't affect the build and it's blocking us.
The backport to docs-release-5.5
failed:
The process '/usr/bin/git' failed with exit code 1
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-docs-release-5.5 docs-release-5.5
# Navigate to the new working tree
cd .worktrees/backport-docs-release-5.5
# Create a new branch
git switch --create backport-5397-to-docs-release-5.5
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 ba1180d71488c4f6214290ae20c5bcfd220136ef
# Push it to GitHub
git push --set-upstream origin backport-5397-to-docs-release-5.5
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-docs-release-5.5
Then, create a pull request where the base
branch is docs-release-5.5
and the compare
/head
branch is backport-5397-to-docs-release-5.5
.
The backport to docs-release-5.6
failed:
The process '/usr/bin/git' failed with exit code 1
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-docs-release-5.6 docs-release-5.6
# Navigate to the new working tree
cd .worktrees/backport-docs-release-5.6
# Create a new branch
git switch --create backport-5397-to-docs-release-5.6
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 ba1180d71488c4f6214290ae20c5bcfd220136ef
# Push it to GitHub
git push --set-upstream origin backport-5397-to-docs-release-5.6
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-docs-release-5.6
Then, create a pull request where the base
branch is docs-release-5.6
and the compare
/head
branch is backport-5397-to-docs-release-5.6
.
Following:
This PR updates the Github Actions that create PRs so that they use the newly introduced Personal Access Token for creating said PRs. This will allow the workflow to trigger the Lint PR workflow and thus allow us to re-enable the required status check.