From e533a3a8cb2de6b4ebd1cac454eb2de91b5fec30 Mon Sep 17 00:00:00 2001 From: KoheiKanagu Date: Wed, 13 Dec 2023 22:22:01 +0900 Subject: [PATCH] refactor: versioning-strategy --- .github/dependabot.yaml | 3 +++ tool/bump_all_deps.dart | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index c6ab9b07..b1fae45b 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -10,6 +10,7 @@ updates: - package-ecosystem: "npm" directory: "/firebase/functions" + versioning-strategy: increase-if-necessary schedule: interval: "weekly" day: "monday" @@ -28,6 +29,7 @@ updates: - package-ecosystem: "pub" directory: "/packages/core" + versioning-strategy: increase-if-necessary schedule: interval: "weekly" day: "monday" @@ -63,6 +65,7 @@ updates: - package-ecosystem: "pub" directory: "/packages/listen_to_music_by_location" + versioning-strategy: increase-if-necessary schedule: interval: "weekly" day: "monday" diff --git a/tool/bump_all_deps.dart b/tool/bump_all_deps.dart index 37dd7cbe..d4a79dfc 100644 --- a/tool/bump_all_deps.dart +++ b/tool/bump_all_deps.dart @@ -42,4 +42,12 @@ Future bumpAllDeps() async { ], ); } + + run( + 'melos', + arguments: [ + 'run', + 'pod:update', + ], + ); }