From fbd09b56c838da7c33765b219fa13570394976f7 Mon Sep 17 00:00:00 2001 From: csimonapastore Date: Wed, 28 May 2025 00:37:12 +0200 Subject: [PATCH 1/4] Adding dependabot.yml to enable version updates --- .github/workflows/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 0000000..9b87815 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: "nuget" + directory: "/MainProject" + schedule: + interval: "daily" + open-pull-requests-limit: 5 + target-branch: "main" + versioning-strategy: "follow-root-version" + + - package-ecosystem: "nuget" + directory: "/MainProject.Tests" + schedule: + interval: "daily" + open-pull-requests-limit: 5 + target-branch: "main" + versioning-strategy: "follow-root-version" From ca8fd6742829c34ff4dca4f92c755a69278b3b0c Mon Sep 17 00:00:00 2001 From: csimonapastore Date: Wed, 28 May 2025 00:41:08 +0200 Subject: [PATCH 2/4] Changed target branch --- .github/workflows/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index 9b87815..333752b 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -5,7 +5,7 @@ updates: schedule: interval: "daily" open-pull-requests-limit: 5 - target-branch: "main" + target-branch: "sprints/7" versioning-strategy: "follow-root-version" - package-ecosystem: "nuget" @@ -13,5 +13,5 @@ updates: schedule: interval: "daily" open-pull-requests-limit: 5 - target-branch: "main" + target-branch: "sprints/7" versioning-strategy: "follow-root-version" From a3938fa5f00faa9ff2739169846e290892ab10b4 Mon Sep 17 00:00:00 2001 From: csimonapastore Date: Wed, 28 May 2025 00:42:52 +0200 Subject: [PATCH 3/4] Moved dependabot.yml to correct folder --- .github/{workflows => }/dependabot.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{workflows => }/dependabot.yml (100%) diff --git a/.github/workflows/dependabot.yml b/.github/dependabot.yml similarity index 100% rename from .github/workflows/dependabot.yml rename to .github/dependabot.yml From 118a9bb6e460642bd6ddcfc2edca809808fdde33 Mon Sep 17 00:00:00 2001 From: csimonapastore Date: Wed, 28 May 2025 00:50:57 +0200 Subject: [PATCH 4/4] Removed versioning-strategy to avoid error The property '#/updates/0/' contains additional properties ["versioning-strategy"] outside of the schema when none are allowed --- .github/dependabot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 333752b..841ded0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,6 @@ updates: interval: "daily" open-pull-requests-limit: 5 target-branch: "sprints/7" - versioning-strategy: "follow-root-version" - package-ecosystem: "nuget" directory: "/MainProject.Tests" @@ -14,4 +13,3 @@ updates: interval: "daily" open-pull-requests-limit: 5 target-branch: "sprints/7" - versioning-strategy: "follow-root-version"