You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of writing this, Dependabot has been set up to only update GitHub Actions, and Rust dependency updates are done manually. The motivation to manually update Rust dependencies has been to prevent notifications noise from Dependabot PRs.
Requirements
Reduce the human intervention required for dependency updates. As much as possible, this should not create notification noise for the project maintainer(s).
Set up scheduled updates. Updates should run at a set interval, say, every 2 weeks or once a month (confirm the specifics with the project maintainers before picking up this task).
As of writing this, Dependabot does support auto-merging PRs with the help of GitHub Actions. However, Dependabot would still open PRs first, run CI tests and then merge the PR if all tests pass.
As for scheduling, Renovate provides a good number of scheduling presets. As per the schedule option docs, Renovate also supports using Cron syntax and Later syntax.
As of writing this, Dependabot has been set up to only update GitHub Actions, and Rust dependency updates are done manually. The motivation to manually update Rust dependencies has been to prevent notifications noise from Dependabot PRs.
Requirements
Available Options
Dependabot
schedule.interval
,schedule.day
,schedule.time
andschedule.timezone
configuration options.Renovate
automergeType=branch
, Renovate will try to create a branch, run tests and merge it if all tests pass. If tests fail, however, Renovate will raise a PR for manual review. See also: Automerging and scheduling, Frequent problems and how to resolve them.schedule
option docs, Renovate also supports using Cron syntax and Later syntax.github-actions
module docs.The text was updated successfully, but these errors were encountered: