chore: integrate Linear Releases with multi-package workflow#368
Conversation
Add linear-release.yaml workflow for tag-based release syncing. Update publish.yaml to mark releases complete in Linear and post to Slack. Each package uses its own Linear pipeline access key. Co-authored-by: Cursor <cursoragent@cursor.com>
|
Warning Review limit reached
More reviews will be available in 19 minutes and 41 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, 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 include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ 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 |
|
@coderabbitai review this PR |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Get PR details and changed files
gh pr view 368 --repo currents-dev/currents-reporter --json title,body,files,additions,deletions,baseRefName,headRefName
echo "=== CHANGED FILES ==="
gh pr diff 368 --repo currents-dev/currents-reporter --name-onlyLength of output: 1185 🏁 Script executed: #!/bin/bash
# Get the full diff
gh pr diff 368 --repo currents-dev/currents-reporterLength of output: 8354
Review: chore: integrate Linear Releases with multi-package workflow🔴 Critical Bug — Regex breaks
|
| Action | Used tag | Recommendation |
|---|---|---|
linear/linear-release-action |
@v0 |
Pin to a full SHA |
slackapi/slack-github-action |
@v2 |
Pin to a full SHA |
Example:
uses: linear/linear-release-action@<full-sha> # v0You can find the current commit SHA from the action's releases page.
✅ What looks good
- The overall workflow structure (branch sync vs. tag sync) is clean and well-organized.
- Separating Linear pipeline keys per package is the right approach.
- The
steps.release.outputs.release-urlguard on the Slack notification prevents posting if Linear didn't return a URL. - README documentation is clear and covers all required secrets.
Add linear-release.yaml workflow for tag-based release syncing. Update publish.yaml to mark releases complete in Linear and post to Slack. Each package uses its own Linear pipeline access key. Update README with Linear Releases documentation.
Made with Cursor