Skip to content

Commit cbff808

Browse files
committed
feat(dependabot): automatically manage submodules and docker/compose image versions
1 parent c54646a commit cbff808

3 files changed

Lines changed: 47 additions & 4 deletions

File tree

.github/dependabot.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: gitsubmodule
5+
directory: /
6+
schedule:
7+
interval: daily
8+
time: 06:00
9+
assignees:
10+
- 99linesofcode
11+
commit-message:
12+
prefix: fix
13+
prefix-development: chore
14+
include: scope
15+
16+
- package-ecosystem: docker
17+
directory: /
18+
schedule:
19+
interval: daily
20+
time: 06:00
21+
assignees:
22+
- 99linesofcode
23+
commit-message:
24+
prefix: fix
25+
prefix-development: chore
26+
include: scope
27+
28+
- package-ecosystem: docker-compose
29+
directory: /
30+
schedule:
31+
interval: daily
32+
time: 06:00
33+
assignees:
34+
- 99linesofcode
35+
commit-message:
36+
prefix: fix
37+
prefix-development: chore
38+
include: scope
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: automatic updates
2+
3+
on: pull_request
4+
5+
jobs:
6+
automatic-updates:
7+
uses: 99linesofcode/.github/.github/workflows/automatic-updates.yaml@main

.github/workflows/changelog.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: changelog
2+
23
on:
34
push:
45
branches:
56
- main
6-
# Give the default GITHUB_TOKEN write permission to commit and push the updated CHANGELOG back to the repository.
7-
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/
8-
permissions:
9-
contents: write
7+
108
jobs:
119
deploy:
1210
uses: 99linesofcode/.github/.github/workflows/changelog.yaml@main

0 commit comments

Comments
 (0)