From 61a28a5ca2d97d3cee533d9ce01999a342f22a7f Mon Sep 17 00:00:00 2001 From: Kevin Decherf Date: Tue, 5 Aug 2025 18:25:02 +0200 Subject: [PATCH] Add CODEOWNERS, fix deprecation References: - https://github.com/wallabag/wallabag/pull/8388#issuecomment-3148942621 - https://github.blog/changelog/2025-04-29-dependabot-reviewers-configuration-option-being-replaced-by-code-owners/ - https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners Signed-off-by: Kevin Decherf --- .github/CODEOWNERS | 2 ++ .github/dependabot.yml | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..998c8abc4 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# Migrated rules from dependabot.yml +composer.* @Kdecherf @j0k3r @yguedidi diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d0b09fe6e..4a95c66a2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -35,10 +35,6 @@ updates: phpstan-dependencies: patterns: - "phpstan/*" - reviewers: - - j0k3r - - yguedidi - - Kdecherf ignore: - dependency-name: symfony/* update-types: [ "version-update:semver-major" ]