From d78b39b07824aa9493cf90a20e0f5a10d45325af Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Fri, 15 Sep 2023 13:23:08 +0200 Subject: [PATCH] Added dependabot configuration, configured for GE and CCUD plugins, as well as github actions. --- .github/dependabot.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..9ddc94f8528 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,31 @@ +version: 2 +registries: + gradle-plugin-portal: + type: maven-repository + url: https://plugins.gradle.org/m2 + username: dummy # Required by dependabot + password: dummy # Required by dependabot +updates: + - package-ecosystem: "gradle" + directory: "/" + registries: + - gradle-plugin-portal + schedule: + interval: "daily" + time: "02:00" + # Use Korea Standard Time (UTC +09:00) + timezone: "Asia/Seoul" + open-pull-requests-limit: 10 + allow: + - dependency-name: "com.gradle.enterprise" + dependency-type: "production" + - dependency-name: "com.gradle.common-custom-user-data-gradle-plugin" + dependency-type: "production" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + time: "02:00" + # Use Korea Standard Time (UTC +09:00) + timezone: "Asia/Seoul"