diff options
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5008dd6c227..e70f3e1e0f6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -64,7 +64,7 @@ updates: day: saturday time: "03:00" timezone: Europe/Paris - target-branch: stable24 + target-branch: stable25 labels: - "3. to review" - "feature: dependencies" @@ -74,6 +74,8 @@ updates: # ignore all GitHub linguist patch updates - dependency-name: "*" update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"] + # Disable automatic rebasing because without a build CI will likely fail anyway + rebase-strategy: "disabled" - package-ecosystem: npm directory: "/" @@ -82,7 +84,7 @@ updates: day: saturday time: "03:00" timezone: Europe/Paris - target-branch: stable25 + target-branch: stable26 labels: - "3. to review" - "feature: dependencies" @@ -92,6 +94,8 @@ updates: # ignore all GitHub linguist patch updates - dependency-name: "*" update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"] + # Disable automatic rebasing because without a build CI will likely fail anyway + rebase-strategy: "disabled" - package-ecosystem: npm directory: "/" @@ -100,7 +104,7 @@ updates: day: saturday time: "03:00" timezone: Europe/Paris - target-branch: stable26 + target-branch: stable27 labels: - "3. to review" - "feature: dependencies" @@ -110,6 +114,8 @@ updates: # ignore all GitHub linguist patch updates - dependency-name: "*" update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"] + # Disable automatic rebasing because without a build CI will likely fail anyway + rebase-strategy: "disabled" # Testing StableXX composer - package-ecosystem: composer @@ -119,7 +125,7 @@ updates: day: saturday time: "03:00" timezone: Europe/Paris - target-branch: stable24 + target-branch: stable25 labels: - "3. to review" - "feature: dependencies" @@ -137,7 +143,25 @@ updates: day: saturday time: "03:00" timezone: Europe/Paris - target-branch: stable25 + target-branch: stable26 + labels: + - "3. to review" + - "feature: dependencies" + reviewers: + - "nextcloud/server-dependabot" + ignore: + # ignore all GitHub linguist patch updates + - dependency-name: "*" + update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"] + +- package-ecosystem: composer + directory: "/build/integration" + schedule: + interval: weekly + day: saturday + time: "03:00" + timezone: Europe/Paris + target-branch: stable27 labels: - "3. to review" - "feature: dependencies" |