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
fix: use release branch and PR for version bump to respect branch pro… (#904)
* fix: use release branch and PR for version bump to respect branch protection
- Add pull-requests: write permission
- Create release branch instead of pushing directly to target branch
- Automatically create PR from release branch to target branch
- Check if PR already exists before creating (idempotent re-runs)
- Update build-tauri and create-release jobs to use release branch
- Document tag timing behavior in auto-generated PR description
This PR contains the version bump for release $NEW_VERSION.
147
+
148
+
### Changes
149
+
- Updated version in package.json, tauri.conf.json, and Cargo.toml
150
+
- Tagged release $NEW_VERSION
151
+
152
+
> **Note:** The tag is created on the release branch before merge. This is intentional to allow the build and release process to complete. The tag points to the version bump commit.
153
+
154
+
---
155
+
*This PR was automatically created by the release workflow.*" \
156
+
--base "$TARGET_BRANCH" \
157
+
--head "$RELEASE_BRANCH"
158
+
echo "Created PR for $RELEASE_BRANCH -> $TARGET_BRANCH"
0 commit comments