Skip to content

Commit

Permalink
revert testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yaakovpraisler committed Jan 15, 2025
1 parent e71e550 commit 181582b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-update-dockerfiles-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Create update dockerfiles PR

on:
workflow_run:
workflows: [Update external base images2, Update internal base images2]
workflows: [Update external base images, Update internal base images]
types: completed
workflow_dispatch:

Expand Down
6 changes: 3 additions & 3 deletions utils/auto_dockerfile_update/update_dockerfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ def update_and_push_dockerfiles(

changedFiles = [item.a_path for item in git_repo.index.diff(None)]
print(f"[INFO] changed files are: {','.join(changedFiles)}")
# git_repo.git.add("*")
# git_repo.git.commit(m=f"Update Dockerfiles")
# git_repo.git.push("--set-upstream", "origin", branch)
git_repo.git.add("*")
git_repo.git.commit(m=f"Update Dockerfiles")
git_repo.git.push("--set-upstream", "origin", branch)
print(f"Created branch {branch_name} successfully")
except GitCommandError as e:
print(f"Error creating {branch_name}")
Expand Down

0 comments on commit 181582b

Please sign in to comment.