Skip to content

Commit 4174039

Browse files
committed
ci(dependabot): check for dependency updates
Schedule Dependabot to check for dependency updates every month. It is important to keep on top of dependency updates to ensure patches are regularly introduced.
1 parent b5d7bc4 commit 4174039

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

.github/dependabot.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: github-actions
5+
directory: /
6+
schedule:
7+
interval: weekly
8+
commit-message:
9+
prefix: ci(deps)
10+
- package-ecosystem: gomod
11+
directory: /
12+
schedule:
13+
interval: monthly
14+
commit-message:
15+
prefix: chore(deps)
16+
ignore:
17+
- dependency-name: "*"
18+
update-types:
19+
- version-update:semver-major

.github/workflows/auto-merge.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: auto-merge
3+
on:
4+
pull_request_target:
5+
permissions:
6+
contents: write
7+
pull-requests: write
8+
jobs:
9+
auto-merge:
10+
uses: tomasbasham/shared-workflows/.github/workflows/auto-merge.yaml@v1
11+
with:
12+
auto-merge-semver-minor: true

0 commit comments

Comments
 (0)