Skip to content

Commit 71ff4e8

Browse files
Merge pull request #245 from big-andy-coates/dependabot-sub-projects
Enable dependabot on subprojects
2 parents 32bde48 + 40f6702 commit 71ff4e8

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,27 @@ updates:
2222
schedule:
2323
interval: monthly
2424
- package-ecosystem: gradle
25-
directory: /docs-examples
25+
directory: /test-project
2626
open-pull-requests-limit: 50
2727
schedule:
28-
interval: weekly
29-
- package-ecosystem: docker
30-
directory: /test-service
28+
interval: monthly
29+
- package-ecosystem: gradle
30+
directory: /test-project-groovy
31+
open-pull-requests-limit: 50
32+
schedule:
33+
interval: monthly
34+
- package-ecosystem: gradle
35+
directory: /test-project-kotlin
36+
open-pull-requests-limit: 50
37+
schedule:
38+
interval: monthly
39+
- package-ecosystem: gradle
40+
directory: /test-project-kotlin-pre-1-7
41+
open-pull-requests-limit: 50
42+
schedule:
43+
interval: monthly
44+
- package-ecosystem: gradle
45+
directory: /test-project-mixed
46+
open-pull-requests-limit: 50
3147
schedule:
3248
interval: monthly

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Build
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
workflow_dispatch: {}
49

510
jobs:
611
build:

0 commit comments

Comments
 (0)