Skip to content

Commit

Permalink
Update logref.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shysolocup authored Sep 25, 2024
1 parent ecd75fe commit fbaef51
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/logs/scripts/logref.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
import sys
import os

basedir = os.path.dirname(os.path.realpath(__file__));

dirs = [ ".github", "workflows", "logs", "scripts" ];

if "/" in basedir:
basedir = basedir.replace( "/".join(dirs), '' );
basedir = sys.argv[1];

logrefdir = basedir + "logref.md";

print(logrefdir);

username = sys.argv[1];
useremail = sys.argv[2];
commitmsg = sys.argv[3];
username = sys.argv[2];
useremail = sys.argv[3];
commitmsg = sys.argv[4];
repolink = sys.argv[4];


Expand Down

0 comments on commit fbaef51

Please sign in to comment.