chore(ci): switch workflows to Blacksmith runners#1
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| jobs: | ||
| lint: | ||
| runs-on: ubuntu-latest | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 |
There was a problem hiding this comment.
🚩 Blacksmith runner compatibility consideration
The runner is changed from ubuntu-latest to blacksmith-4vcpu-ubuntu-2404 in both workflows. Blacksmith runners are GitHub Actions-compatible and this should work seamlessly. However, if the repository's GitHub organization doesn't have Blacksmith configured, both workflows will fail with a runner resolution error. This is not a code bug but an operational prerequisite worth confirming.
Was this helpful? React with 👍 or 👎 to provide feedback.
| jobs: | ||
| bump-and-publish: | ||
| runs-on: ubuntu-latest | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 |
There was a problem hiding this comment.
🚩 Docker actions compatibility on Blacksmith runners
The publish workflow uses Docker-related actions (docker/setup-qemu-action@v3, docker/setup-buildx-action@v3, docker/build-push-action@v5) at .github/workflows/publish.yml:133-155. These actions rely on Docker being available on the runner. Blacksmith runners generally support Docker, but it's worth confirming that the blacksmith-4vcpu-ubuntu-2404 image includes Docker and QEMU support for multi-platform builds (linux/amd64,linux/arm64).
Was this helpful? React with 👍 or 👎 to provide feedback.
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 59 minutes and 54 seconds. ⌛ 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. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
Summary
Notes