Skip to content

Commit dfcdd98

Browse files
committed
[FIX] Dependabot not working
Dependabot did not work anymore. This fixes and adds Docker as well. Enable dependabot for most recent and supported branches: This change enables Dependabot for all supported branches, by trying to consume dependabot settings [`target-branch`](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#target-branch) together with [`commit-message.prefix`](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#commit-message) Fixes: #3168
1 parent 3d1092b commit dfcdd98

2 files changed

Lines changed: 50 additions & 14 deletions

File tree

.github/dependabot.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
version: 2
2+
updates:
3+
-
4+
package-ecosystem: "composer"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
allow:
9+
- dependency-name: "solarium/solarium"
10+
target-branch: "main"
11+
commit-message:
12+
prefix: "[TASK] 13.0.x-dev "
13+
-
14+
package-ecosystem: "docker"
15+
directory: "/Docker/SolrServer"
16+
schedule:
17+
interval: "daily"
18+
target-branch: "main"
19+
commit-message:
20+
prefix: "[TASK] 13.0.x-dev "
21+
22+
# For release-12.0.x
23+
-
24+
package-ecosystem: "composer"
25+
directory: "/"
26+
schedule:
27+
interval: "daily"
28+
allow:
29+
- dependency-name: "solarium/solarium"
30+
target-branch: "release-12.0.x"
31+
commit-message:
32+
prefix: "[TASK] 12.0.x-dev "
33+
-
34+
package-ecosystem: "docker"
35+
directory: "/Docker/SolrServer"
36+
schedule:
37+
interval: "daily"
38+
target-branch: "release-12.0.x"
39+
commit-message:
40+
prefix: "[TASK] 12.0.x-dev "
41+
42+
# For release-11.6.x
43+
-
44+
package-ecosystem: "docker"
45+
directory: "/Docker/SolrServer"
46+
schedule:
47+
interval: "daily"
48+
target-branch: "release-11.6.x"
49+
commit-message:
50+
prefix: "[TASK] 11.6.x-dev "

dependabot.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)