Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove half baked dry run functionality
  • Loading branch information
henrymercer committed Sep 22, 2025
commit 8df00436ea90278318ee4935ea97eac7c726fd3e
6 changes: 0 additions & 6 deletions pr-checks/sync_back.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ def update_template_files(checks_dir: str, action_versions: Dict[str, str]) -> L

def main():
parser = argparse.ArgumentParser(description="Sync action versions from generated workflows back to templates")
parser.add_argument("--dry-run", action="store_true", help="Show what would be changed without making changes")
parser.add_argument("--verbose", "-v", action="store_true", help="Enable verbose output")
args = parser.parse_args()

Expand All @@ -161,11 +160,6 @@ def main():
print("No action versions found in generated workflows")
return 1

if args.dry_run:
print("\nDRY RUN - Would make the following changes:")
print(f"Action versions to sync: {action_versions}")
return 0

# Update files
print("\nUpdating source files...")
modified_files = []
Expand Down