From 8a2622210db2e9b5dc0d46340ae2592a6c696a67 Mon Sep 17 00:00:00 2001 From: "Peter A. Jonsson" Date: Sat, 11 Jun 2022 11:24:50 +0200 Subject: [PATCH] CI: add dependabot configuration Dependabot can provide automatic pull requests for things in the repository that should be updated. Example PR from dependabot against a repo owned by the github organization: https://github.com/github/opensource.guide/pull/2248 Documentation: https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/about-dependabot-security-updates --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..402257f01b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: "daily" + target-branch: "develop"