File size: 338 Bytes
f747401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import subprocess

try:
    subprocess.check_call(
        [
            "git",
            "commit",
            "-m",
            "feat(observability): Integrate core components"])
    print("Commit successful")

    subprocess.check_call(["git", "push"])
    print("Push successful")
except Exception as e:
    print("Error:", str(e))