buildAutoUpdateSeed returns the deterministic seed string used to scatter the FUZZY:WEEKLY cron schedule. It combines the repo slug with the fixed workflow identifier so that repositories scatter to distinct time slots.
(repoSlug string)
| 126 | // FUZZY:WEEKLY cron schedule. It combines the repo slug with the fixed workflow |
| 127 | // identifier so that repositories scatter to distinct time slots. |
| 128 | func buildAutoUpdateSeed(repoSlug string) string { |
| 129 | if repoSlug != "" { |
| 130 | return repoSlug + "/" + autoUpdateWorkflowIdentifier |
| 131 | } |
| 132 | return autoUpdateWorkflowIdentifier |
| 133 | } |
| 134 | |
| 135 | // buildAutoUpdateWorkflowYAML generates the YAML content for agentic-auto-upgrade.yml. |
| 136 | func buildAutoUpdateWorkflowYAML( |
no outgoing calls