Skip to content

ci: fix perms for claude again #116

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

Merged
merged 1 commit into from
Jul 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
timeout_minutes: "60"
allowed_tools: 'Bash(*),Bash(gh *),Bash(pip *),Bash(mypy *),Bash(python *),Bash(mypy servc --check-untyped-defs)'
allowed_tools: 'Bash(*),Bash(gh *),Bash(pip *),Bash(mypy *),Bash(python *),Bash(mypy servc --check-untyped-defs),Bash(pip install -r requirements-dev.txt)'
Copy link
Preview

Copilot AI Jul 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The specific command 'Bash(pip install -r requirements-dev.txt)' is redundant since 'Bash(pip *)' already covers all pip commands including this one. Consider removing the redundant entry to keep the configuration cleaner.

Suggested change
allowed_tools: 'Bash(*),Bash(gh *),Bash(pip *),Bash(mypy *),Bash(python *),Bash(mypy servc --check-untyped-defs),Bash(pip install -r requirements-dev.txt)'
allowed_tools: 'Bash(*),Bash(gh *),Bash(pip *),Bash(mypy *),Bash(python *),Bash(mypy servc --check-untyped-defs)'

Copilot uses AI. Check for mistakes.

Loading