Skip to content

Commit daea1dd

Browse files
authored
Add Dependabot configuration to the project (#55)
1 parent f4167e8 commit daea1dd

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gradle
4+
labels:
5+
- dependencies
6+
assignees:
7+
- 'OptimumCode'
8+
directory: '/'
9+
schedule:
10+
interval: daily
11+
- package-ecosystem: github-actions
12+
labels:
13+
- dependencies
14+
- ci/cd
15+
assignees:
16+
- 'OptimumCode'
17+
directory: '/'
18+
schedule:
19+
interval: daily

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Build
5353
run: ./gradlew --no-daemon --info ${{ inputs.task }} detektAll ktlintCheck apiCheck koverXmlReport -x :benchmark:benchmark
5454
- name: Upload coverage reports to Codecov
55-
if: inputs.upload-code-coverage
55+
if: inputs.upload-code-coverage && github.actor != 'dependabot[bot]'
5656
uses: codecov/codecov-action@v4
5757
with:
5858
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)