diff options
author | Joas Schilling <coding@schilljs.com> | 2024-08-14 09:54:58 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-08-14 09:56:47 +0200 |
commit | 31b74bc671a7646bbbad69624023ce9dc572c893 (patch) | |
tree | d9fca98ff2d84d99ca6b121d298560225e8d4d7e /.github/dependabot.yml | |
parent | 1044b7f0b90778705633e1d725373fc94d4107ad (diff) | |
download | nextcloud-server-31b74bc671a7646bbbad69624023ce9dc572c893.tar.gz nextcloud-server-31b74bc671a7646bbbad69624023ce9dc572c893.zip |
fix(CI)!: Add stable30 to and remove stable27 from GitHub Actions
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 16eb43559b1..988f05ffb3b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -138,6 +138,25 @@ updates: # Disable automatic rebasing because without a build CI will likely fail anyway rebase-strategy: "disabled" +- package-ecosystem: npm + directory: "/" + schedule: + interval: weekly + day: saturday + time: "03:00" + timezone: Europe/Paris + target-branch: stable30 + labels: + - "3. to review" + - "feature: dependencies" + reviewers: + - "nextcloud/server-dependabot" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major", "version-update:semver-minor"] + # Disable automatic rebasing because without a build CI will likely fail anyway + rebase-strategy: "disabled" + - package-ecosystem: composer directory: "/build/integration" schedule: @@ -174,6 +193,24 @@ 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: stable30 + 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"] + # GitHub Actions - package-ecosystem: "github-actions" directory: "/" |