-
Notifications
You must be signed in to change notification settings - Fork 619
Check for linear in PR description #5216
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
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Your org has enabled the Graphite merge queue for merging into mainAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
size-limit report 📦
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5216 +/- ##
=======================================
Coverage 45.37% 45.37%
=======================================
Files 1067 1067
Lines 55446 55446
Branches 3989 3989
=======================================
Hits 25157 25157
Misses 29598 29598
Partials 691 691
*This pull request uses carry forward flags. Click here to find out more. |
Merge activity
|
## Problem solved Fixes https://linear.app/thirdweb/issue/ENG-2/better-enforce-linear-use <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces a GitHub Actions workflow to check the pull request body for specific keywords ("CNCT" or "DASH"). If these keywords are found, it confirms a linked issue; otherwise, it fails the check. ### Detailed summary - Added a workflow named `Check for "linear" in pull request body` in `.github/workflows/linear.yml`. - Configured the workflow to trigger on `pull_request` events (opened and edited). - Implemented a job `check_linear_in_pr_body` to verify the presence of keywords in the PR body. - Utilized `curl` to fetch the PR body and `grep` to search for keywords. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
953b9c4 to
f81ffa9
Compare
Problem solved
Fixes https://linear.app/thirdweb/issue/ENG-2/better-enforce-linear-use
PR-Codex overview
This PR introduces a GitHub Actions workflow that checks for specific keywords in the pull request body to ensure linked issues are mentioned.
Detailed summary
.github/workflows/linear.yml.Check for "linear" in pull request body.check_linear_in_pr_bodyto verify the presence of keywords "CNCT" or "DASH" in the PR body.