We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9501824 + a2a12dd commit 644f7aeCopy full SHA for 644f7ae
penify_hook/commit_analyzer.py
@@ -72,6 +72,9 @@ def get_repo_details(self):
72
except Exception as e:
73
print(f"Error determining repo details: {e}")
74
75
+ org_name = org_name if org_name else "UNKNOWN_ORG"
76
+ repo_name = repo_name if repo_name else "UNKNOWN_REPO"
77
+
78
return {
79
"organization_name": org_name,
80
"repo_name": repo_name,
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name="penify-cli",
5
- version="0.1.3", # Increment the version number
+ version="0.1.4", # Increment the version number
6
packages=['penify_hook'], # Explicitly include the penify_hook package
7
install_requires=[
8
"requests",
0 commit comments