Skip to content
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
16 changes: 16 additions & 0 deletions .codex/rules/github.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The GitHub CLI authenticates through macOS Keychain, which is unavailable
# inside the workspace sandbox. This repository is trusted to use the complete
# CLI outside that sandbox rather than maintaining a brittle subcommand list.
prefix_rule(
pattern = ["gh"],
decision = "allow",
match = [
"gh auth status",
"gh pr view 222",
"gh run view 31345555418 --log-failed",
"gh api repos/kyleve/Stuff/actions/runs/31345555418/artifacts",
],
not_match = [
"git status --short",
],
)
Loading