Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 2 additions & 0 deletions src/codegen/cli/api/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
class CodemodRunType(str, Enum):
"""Type of codemod run."""

# TODO: move into codegen/shared

DIFF = "diff"
PR = "pr"

Expand Down
2 changes: 1 addition & 1 deletion src/codegen/runner/models/codemod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Codemod(BaseModel):

# Sentry tags
epic_id: int
is_customer: bool = True
is_admin: bool = False


class GroupingConfig(BaseModel):
Expand Down