Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
cache: 'pip'

- name: Install dependencies
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,7 @@ __marimo__/
.streamlit/secrets.toml

# Firebase Studio
.idx
.idx

# Generated artifacts
plan.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ The included GitHub Actions workflow (`.github/workflows/ci.yml`) runs a dry-run
- `PROFILE`: your Control D profile ID(s)

## Requirements
- Python 3.12+
- Python 3.13+
- `uv` (for dependency management)
6 changes: 6 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,12 @@ def main():
for profile_id in (profile_ids or ["dry-run-placeholder"]):
# Skip validation for dry-run placeholder
if profile_id != "dry-run-placeholder" and not validate_profile_id(profile_id):
sync_results.append({
"profile": profile_id,
"folders": 0,
"rules": 0,
"status": "❌ Invalid Profile ID",
})
continue

log.info("Starting sync for profile %s", profile_id)
Expand Down
Loading