-
Notifications
You must be signed in to change notification settings - Fork 180
Restore mobile build bump PR automation #1186
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
Conversation
|
Warning Rate limit exceeded@transphorm has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 4 minutes and 5 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (2)
WalkthroughAdds automated PR creation steps in mobile-deploy workflow to bump iOS and Android build numbers using peter-evans/create-pull-request, includes app/version.json in PRs, and introduces a pull_request dry-run path that outputs diffs and exits without committing or opening PRs. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Dev as Developer
participant GH as GitHub Actions Runner
participant WF as mobile-deploy.yml
participant PE as peter-evans/create-pull-request
Dev->>GH: Push / Dispatch workflow
GH->>WF: Run update-version steps
alt Event == pull_request
WF->>WF: Generate diffs (dry-run)
WF-->>GH: Output staged changes and exit
else Not pull_request and not ACT
WF->>WF: Apply version/build bumps
par iOS path
WF->>PE: Create PR for iOS build bump (into staging)
PE-->>WF: PR URL/metadata
and Android path
WF->>PE: Create PR for Android build bump (into staging)
PE-->>WF: PR URL/metadata
end
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/mobile-deploy.yml(3 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
.github/workflows/**/*.{yml,yaml}
📄 CodeRabbit inference engine (AGENTS.md)
.github/workflows/**/*.{yml,yaml}: In GitHub Actions workflows, use shared composite caching actions from .github/actions (cache-yarn, cache-bundler, cache-gradle, cache-pods)
Do not call actions/cache directly; rely on the shared composite caching actions
When using cache actions, optionally pass cache-version (often with GH_CACHE_VERSION and tool version) for stable keys
Files:
.github/workflows/mobile-deploy.yml
Summary
Testing
https://chatgpt.com/codex/tasks/task_b_68ddfd5106f8832dbf26ea5962a108ee
Summary by CodeRabbit