Generation of MR once a day #29698
Replies: 2 comments 7 replies
-
Try Custom manager, custom datasource, loose versioning (eg date is 20240615) |
Beta Was this translation helpful? Give feedback.
6 replies
-
I've stumbled on a similar need but wanted to update every year. every year: "customDatasources": {
"year": {
"defaultRegistryUrlTemplate": "file://",
"transformTemplates": [
"{\"releases\": [{\"version\": $fromMillis($millis(), \"[Y0001]\")}]}"
]
}
} every day (change format to your liking): "customDatasources": {
"day": {
"defaultRegistryUrlTemplate": "file://",
"transformTemplates": [
"{\"releases\": [{\"version\": $fromMillis($millis(), \"[Y0001][M01][D01]\")}]}"
]
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What would you like help with?
Other
How are you running Renovate?
Self-hosted
If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.
gitlab
Please tell us more about your question or problem
I'd like to force MR created once a day. It is needed for invoking a post upgrade command. Not sure if the command is invoked if there is no dependency to update.
One option I'm considering is tracking a file which contains a date string. Renovate can be used for bumping the date which will result in invoking the post upgrade command.
Is there a way to bump a date string?
Logs (if relevant)
Logs
Beta Was this translation helpful? Give feedback.
All reactions