diff options
author | Joas Schilling <coding@schilljs.com> | 2023-05-17 10:30:46 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-05-17 10:30:46 +0200 |
commit | 511fbb3f1057209ab5d9d2956dff745deb3a9790 (patch) | |
tree | 02031aa66e99e122e2df24cb59ef93af399c8cd4 /.github | |
parent | 288742d55ccdd2a05393203ccb7d4226ccc41760 (diff) | |
download | nextcloud-server-511fbb3f1057209ab5d9d2956dff745deb3a9790.tar.gz nextcloud-server-511fbb3f1057209ab5d9d2956dff745deb3a9790.zip |
chore(CI): Add stable26 to dependabot config
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-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" |