Skip to content

Commit ddfc62c

Browse files
committed
Update dependabot config and improve test workflow
1 parent 79abd78 commit ddfc62c

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
83
- package-ecosystem: "github-actions"
94
target-branch: "master"
105
directory: "/"
116
schedule:
12-
interval: "daily"
7+
interval: "weekly"
138
open-pull-requests-limit: 10
149
labels:
1510
- dependencies
1611
- package-ecosystem: "docker"
1712
target-branch: "master"
18-
directory: "/build"
13+
directory: "/"
1914
schedule:
20-
interval: "daily"
15+
interval: "weekly"
2116
open-pull-requests-limit: 10
2217
labels:
2318
- dependencies
2419
- package-ecosystem: "gomod"
2520
target-branch: "master"
2621
directory: "/"
2722
schedule:
28-
interval: "daily"
23+
interval: "weekly"
2924
open-pull-requests-limit: 10
3025
labels:
3126
- dependencies

.github/workflows/test.yml

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

3-
on: [push, pull_request]
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
410

511
jobs:
612
test:

0 commit comments

Comments
 (0)