Skip to content

Commit 497c66d

Browse files
CasLubbersj-zimnowodadennisvankekem
authored
feat: add dependabot (#1807)
Co-authored-by: jeho <[email protected]> Co-authored-by: dennisvankekem <[email protected]>
1 parent 26f388e commit 497c66d

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.github/dependabot.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
# npm
9+
- package-ecosystem: 'npm'
10+
directory: '/'
11+
schedule:
12+
interval: 'weekly'
13+
commit-message:
14+
prefix: 'chore(deps)'
15+
labels:
16+
- 'dependencies'
17+
18+
# Docker
19+
- package-ecosystem: 'docker'
20+
directory: '/'
21+
schedule:
22+
interval: 'weekly'
23+
commit-message:
24+
prefix: 'chore(deps)'
25+
labels:
26+
- 'dependencies'
27+
28+
# github-actions
29+
- package-ecosystem: 'github-actions'
30+
directory: '/'
31+
schedule:
32+
interval: 'weekly'
33+
commit-message:
34+
prefix: 'chore(deps)'
35+
labels:
36+
- 'dependencies'

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
push-to-docker:
5050
needs: build-test-cache
51-
if: always() && ((contains(needs.build-test-cache.result, 'success') && !contains(needs.integration.outputs.started, 'true')) || (contains(needs.integration.result, 'success'))) && !github.event.act
51+
if: always() && ((contains(needs.build-test-cache.result, 'success') && !contains(needs.integration.outputs.started, 'true')) || (contains(needs.integration.result, 'success'))) && !github.event.act && github.actor != 'dependabot[bot]'
5252
runs-on: ubuntu-22.04
5353
env:
5454
BOT_EMAIL: ${{ vars.BOT_EMAIL }}

0 commit comments

Comments
 (0)