Conversation
Don't write the same thing in multiple times.
WalkthroughModified Changes
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
There was a problem hiding this comment.
Pull request overview
This PR centralizes Deno permission configuration in deno.json so tasks can reuse a shared permission set rather than repeating CLI permission flags.
Changes:
- Added a default permission set (
env+netlimited toapi.github.com) todeno.json. - Updated
start,dev, andtesttasks to use the permission set via-P, removing repeated inline permission flags.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
There was a problem hiding this comment.
Warning
CodeRabbit couldn't request changes on this pull request because it doesn't have sufficient GitHub permissions.
Please grant CodeRabbit Pull requests: Read and write permission and re-run the review.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@deno.json`:
- Around line 9-14: Change the "permissions" block so "env": true is replaced
with an explicit allow-list for the environment variables actually used
(REPOSITORY_OWNER, REPOSITORY_NAME, REPOSITORY_PATH, GITHUB_TOKEN) instead of a
global env grant, and update the "tasks" entries ("start", "dev", "test") that
use the -P flag to remain compatible; also add a short note to the README under
Installation/Requirements stating that Deno 2.5.0+ is required for deno.json
"permissions" and the -P flag, and update CI workflow's setup-deno step to
include an explicit deno-version input to pin to at least 2.5.0.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
close #
✏️ Description
Don't write the same thing multiple times.