mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
34 lines
559 B
Text
34 lines
559 B
Text
prefix_rule(
|
|
pattern = ["just"],
|
|
decision = "allow",
|
|
justification = "Executing Justfile commands is allowed",
|
|
match = [
|
|
"just",
|
|
"just darwin",
|
|
"just darwin-debug",
|
|
],
|
|
)
|
|
|
|
prefix_rule(
|
|
pattern = ["git"],
|
|
decision = "allow",
|
|
justification = "Git is allowed",
|
|
match = [
|
|
"git add .",
|
|
"git commit -m",
|
|
"git worktree",
|
|
"git status",
|
|
"git log",
|
|
"git branch",
|
|
],
|
|
)
|
|
|
|
prefix_rule(
|
|
pattern = ["gh"],
|
|
decision = "allow",
|
|
justification = "Github CLI is allowed",
|
|
match = [
|
|
"gh pr",
|
|
"gh repo",
|
|
],
|
|
)
|