Skip to content

Commit 6699415

Browse files
committed
testing with new version
1 parent 7df46f4 commit 6699415

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

devolv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.2.10"
1+
__version__ = "0.2.11"
22

devolv/drift/cli.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ def push_branch(branch_name: str):
1717
"""
1818
try:
1919
subprocess.run(["git", "checkout", "-b", branch_name], check=True)
20+
21+
# ✅ Ensure Git identity is set (important for CI runners)
22+
subprocess.run(["git", "config", "user.email", "github-actions@users.noreply.github.com"], check=True)
23+
subprocess.run(["git", "config", "user.name", "github-actions"], check=True)
24+
2025
subprocess.run(["git", "add", "."], check=True)
2126
subprocess.run(["git", "commit", "-m", f"Update policy from AWS: {branch_name}"], check=True)
2227
subprocess.run(["git", "push", "--set-upstream", "origin", branch_name], check=True)

devolv/drift/github_approvals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import subprocess
33
from github import Github
4-
4+
import typer
55
def _get_github_token():
66
token = os.getenv("GITHUB_TOKEN")
77
if not token:

0 commit comments

Comments
 (0)