Add procedures.toml

This commit is contained in:
2025-07-11 09:56:11 -04:00
parent c89b81dc9e
commit b591cd1571

29
procedures.toml Normal file
View File

@@ -0,0 +1,29 @@
# Initialize the sync to import your current resources.
##
[[procedure]]
name = "Weekly Updates"
config.schedule_timezone = "America/New_York"
config.schedule = "Every Sunday at midnight"
[[procedure.config.stage]]
name = "Stage 1"
enabled = true
executions = [
{ execution.type = "BatchPullRepo", execution.params.pattern = """, # Match repos by name, id, wildcard, or \regex\., *""", enabled = true }
]
[[procedure.config.stage]]
name = "Stage 2"
enabled = true
executions = [
{ execution.type = "BatchRunBuild", execution.params.pattern = """, # Match builds by name, id, wildcard, or \regex\., *""", enabled = true }
]
[[procedure.config.stage]]
name = "Stage 3"
enabled = true
executions = [
{ execution.type = "PullStack", execution.params.stack = "media_apps", execution.params.services = [], enabled = true }
]