From 01f547aa90c625d86925db534432eec6d49a26ba Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Fri, 6 Jan 2023 18:45:55 +0000 Subject: [PATCH] Add support for Dependabot This commit adds support for Dependabot, which will automatically make PRs on a weekly basis (if necessary) for GitHub Actions and the Dockerfile. --- .github/dependabot.yml | 15 +++++++++++++++ .gitignore | 1 + 2 files changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6f04401 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore(deps)" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore(ci)" diff --git a/.gitignore b/.gitignore index b2615e8..8804d5f 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ !.gitignore !.gitattributes !.mailmap +!.github # Backup files *~