From c2e3ac831de78ebb114cf97084b3806b88d460d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 24 Jun 2024 13:42:11 +0100 Subject: [PATCH] Add github metadata --- .github/CODEOWNERS | 5 +++++ .github/dependabot.yml | 18 ++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/dependabot.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..ed04127 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +* @jelmer + +# Release robot +dulwich/contrib/release_robot.py @mikofski +dulwich/contrib/test_release_robot.py @mikofski diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..909d095 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +# Keep GitHub Actions up to date with GitHub's Dependabot... +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + rebase-strategy: "disabled" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: weekly + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: weekly