-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dependabot: add "github-actions" #250
Conversation
We should probably add it to https://github.com/coreos/repo-templates/blob/main/dependabot/dependabot.yml as well so that it's propagated to all our repos |
87e8d17
to
23e3e6c
Compare
Not sure if my understanding is correct, add it to dependabot.yml, and curious how this works, do you have related docs? |
23e3e6c
to
35ae701
Compare
dependabot/dependabot.yml
Outdated
@@ -7,6 +7,8 @@ updates: | |||
{{ dependabot_ecosystem }} | |||
{%- elif crate -%} | |||
cargo | |||
{%- elif github-actions -%} | |||
github-actions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have github actions in all repos so we can probably make that a static addition in this file and not a conditional one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i.e. we would directly include:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 3
right at the top of this list here
I'm afraid that the only doc about how this repo works is in the README: https://github.com/coreos/repo-templates#coreos-repo-templates The short version is that this generates the files from the templates and creates PRs to the repos to sync them. |
35ae701
to
44e4786
Compare
Inspired by coreos/bootupd#758 (comment)