@@ -38,7 +38,7 @@ IMPORT = sys.argv[2] if len(sys.argv) > 2 else 'import-2.1.x'
38
38
EXPORT = sys .argv [3 ] if len (sys .argv ) > 3 else 'bugfix-2.1.x'
39
39
40
40
# Get repo paths
41
- CI = False
41
+ CI = os . environ . get ( 'GITHUB_ACTIONS' ) == 'true'
42
42
if ACTION == 'CI' :
43
43
_REPOS = "."
44
44
REPOS = Path (_REPOS )
@@ -68,20 +68,23 @@ if not CONFIGREPO.exists():
68
68
sys .exit (1 )
69
69
70
70
# Run git within CONFIGREPO
71
- GITSTDERR = None if DEBUG else subprocess .DEVNULL
71
+ GITSTDERR = subprocess . PIPE if DEBUG else subprocess .DEVNULL
72
72
def git (etc ):
73
- if DEBUG :
74
- print (f"> git { ' ' .join (etc )} " )
75
- if etc [0 ] == "push" :
76
- info ("*** DRY RUN ***" )
77
- return subprocess .run (["echo" ])
78
- return subprocess .run (["git" ] + etc , cwd = CONFIGREPO , stdout = subprocess .PIPE , stderr = GITSTDERR )
73
+ if DEBUG : print (f"> git { ' ' .join (etc )} " )
74
+
75
+ result = subprocess .run (["git" ] + etc , cwd = CONFIGREPO , stdout = subprocess .PIPE , stderr = subprocess .PIPE , text = True )
76
+
77
+ if result .returncode != 0 :
78
+ print (f"Git command failed: git { ' ' .join (etc )} " )
79
+ print (f"Error output: { result .stderr } " )
80
+
81
+ return result
79
82
80
83
# Get the current branch name
81
84
def branch (): return git (["rev-parse" , "--abbrev-ref" , "HEAD" ])
82
85
83
86
# git add . ; git commit -m ...
84
- def commit (msg , who = "." ): git (["add" , who ]) ; return git (["commit" , "-m" , msg ])
87
+ def commit (msg , who = "." ): git (["add" , who ]) ; return git (["commit" , "-m" , f'" { msg } "' ])
85
88
86
89
# git checkout ...
87
90
def checkout (etc ): return git (["checkout" ] + ([etc ] if isinstance (etc , str ) else etc ))
@@ -90,11 +93,7 @@ def checkout(etc): return git(["checkout"] + ([etc] if isinstance(etc, str) else
90
93
def gitbd (name ): return git (["branch" , "-D" , name ]).stdout
91
94
92
95
# git status --porcelain : to check for changes
93
- def changes (): return git (["status" , "--porcelain" ]).stdout .decode ().strip ()
94
-
95
- # Configure git user
96
- git ([
"config" ,
"user.email" ,
"[email protected] " ])
97
- git (["config" , "user.name" , "Scott Lahteine" ])
96
+ def changes (): return git (["status" , "--porcelain" ]).stdout != ""
98
97
99
98
# Stash uncommitted changes at the destination?
100
99
if changes ():
@@ -179,9 +178,9 @@ if ACTION == "init":
179
178
f .writelines (outlines )
180
179
181
180
# Create a fresh 'WORK' as a copy of 'init-repo' (README, LICENSE, etc.)
182
- gitbd ("WORK" )
183
- if CI : git ([ "fetch" , " origin", "init-repo" ])
184
- checkout ([" init-repo" , "-b" , "WORK" ])
181
+ if not CI : gitbd ("WORK" )
182
+ REMOTE = " origin" if CI else "upstream"
183
+ checkout ([f" { REMOTE } / init-repo" , "-b" , "WORK" ])
185
184
186
185
# Copy default configurations into the repo
187
186
info ("Create configs in default state..." )
@@ -193,7 +192,7 @@ if ACTION == "init":
193
192
shutil .copy (TEMPCON / "default" / fn .name , CONFIGCON / relpath )
194
193
195
194
# DEBUG: Commit the reset for review
196
- if DEBUG : commit ("[DEBUG] Create defaults" )
195
+ if DEBUG > 1 : commit ("[DEBUG] Create defaults" )
197
196
198
197
def replace_in_file (fn , search , replace ):
199
198
with open (fn , 'r' ) as f : lines = f .read ()
@@ -203,7 +202,7 @@ if ACTION == "init":
203
202
replace_in_file (CONFIGREPO / "README.md" , "%VERSION%" , EXPORT .replace ("release-" , "" ))
204
203
205
204
# Commit all changes up to now; amend if not debugging
206
- if DEBUG :
205
+ if DEBUG > 1 :
207
206
commit ("[DEBUG] Update README.md version" , "README.md" )
208
207
else :
209
208
git (["add" , "." ])
@@ -234,16 +233,15 @@ if ACTION == "init":
234
233
shutil .rmtree (TEMP )
235
234
236
235
# Push to the remote (if desired)
237
- if CI :
238
- PUSH_YES = 'Y'
239
- else :
236
+ PUSH_YES = 'N'
237
+ if not CI :
240
238
print ()
241
239
PUSH_YES = input (f"Push to upstream/{ EXPORT } ? [y/N] " )
242
240
print ()
243
241
244
242
REMOTE = "origin" if CI else "upstream"
245
243
246
- if PUSH_YES in ('Y' ,'y ' ):
244
+ if PUSH_YES . upper () in ('Y' ,'YES ' ):
247
245
info ("Push to remote..." )
248
246
git (["push" , "-f" , REMOTE , f"WORK:{ EXPORT } " ])
249
247
0 commit comments