Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions penify_hook/commit_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ def get_repo_details(self):
except Exception as e:
print(f"Error determining repo details: {e}")

org_name = org_name if org_name else "UNKNOWN_ORG"
repo_name = repo_name if repo_name else "UNKNOWN_REPO"

return {
"organization_name": org_name,
"repo_name": repo_name,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="penify-cli",
version="0.1.3", # Increment the version number
version="0.1.4", # Increment the version number
packages=['penify_hook'], # Explicitly include the penify_hook package
install_requires=[
"requests",
Expand Down