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 1/3] 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 From 7b1ee569a5ca74e5f06418d555f51ad4ed497127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 1 Jul 2024 14:41:03 +0100 Subject: [PATCH 2/3] Ignore backup file --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index ea8c4bf..3fa5a86 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ /target +*.swp +*~ From 27a16ed32f7faa2c0155bca23d4fce93522c6c13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 1 Jul 2024 14:41:08 +0100 Subject: [PATCH 3/3] Drop unnecessary pip config --- .github/dependabot.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 909d095..cb7285e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,12 +7,7 @@ updates: directory: "/" schedule: interval: "weekly" - rebase-strategy: "disabled" - package-ecosystem: "github-actions" directory: "/" schedule: interval: weekly - - package-ecosystem: "pip" - directory: "/" - schedule: - interval: weekly