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
if git merge origin/main --no-commit --no-ff; then
@@ -102,50 +119,50 @@ jobs:
102
119
git add -A
103
120
git commit -m "Merge main into $branch"
104
121
fi
105
-
122
+
106
123
# Push the temporary branch
107
124
echo "⬆️ Pushing $temp_branch to remote..."
108
125
git push origin "$temp_branch"
109
-
126
+
110
127
# Create PR
111
128
echo "📝 Creating pull request..."
112
-
129
+
113
130
gh pr create \
114
131
--base "$branch" \
115
132
--head "$temp_branch" \
116
133
--title "Sync main into $branch" \
117
134
--body "$(cat <<EOF
118
135
## Description
119
-
136
+
120
137
This automated PR merges the latest changes from \`main\` into \`$branch\`.
121
-
138
+
122
139
**What to do:**
123
140
Review the changes and merge this PR to keep your feature branch up to date with main. If there are merge conflicts, resolve them before merging.
124
-
141
+
125
142
**Branch Info:**
126
143
- **Target**: \`$branch\`
127
144
- **Source**: \`main\`
128
145
- **Commits behind**: $commits_behind
129
-
146
+
130
147
$issue_ref
131
-
148
+
132
149
## Checklist
133
150
- [ ] I am familiar with the [Contributing Guidelines](https://github.com/NVIDIA/OSMO/blob/main/CONTRIBUTING.md).
134
151
- [ ] New or existing tests cover these changes.
135
152
- [ ] The documentation is up to date with these changes.
136
-
153
+
137
154
---
138
155
*This PR was automatically created by the [Sync Feature Branches workflow](.github/workflows/sync-feature-branches.yaml) as part of the [Projects Process](../projects/README.md#stage-in-development).*
0 commit comments