diff --git a/.github/check_for_changes.py b/.github/check_for_changes.py index f650c8e327..b365e69254 100644 --- a/.github/check_for_changes.py +++ b/.github/check_for_changes.py @@ -40,6 +40,13 @@ def main(): ['git', 'rev-parse', 'HEAD', 'HEAD^', 'master', 'origin/master'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, check=True ) + + remote = subprocess.run( + ['git', 'remote', '-v'], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, check=True + ) + + print(f"Git remote -v: {remote}") print(f"Rev parse result: HEAD, HEAD^, master. origin/master {rev_parse}") print(f"git diff output: {result.stdout}")