Skip to content

Commit 0b7ef54

Browse files
authored
Upgrade dependabot.yml (#4)
AB#10361
1 parent 13e1edb commit 0b7ef54

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

.github/dependabot.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# refer: https://github.com/dependabot/dependabot-core/blob/main/.github/dependabot.yml
2+
version: 2
3+
registries:
4+
github-octocat:
5+
type: git
6+
url: https://github.com
7+
username: x-access-token
8+
password: ${{ secrets.DEPENDABOT_PAT }}
9+
10+
updates:
11+
# Maintain dependencies for GitHub Actions
12+
- package-ecosystem: "github-actions"
13+
registries:
14+
- github-octocat
15+
directory: "/"
16+
schedule:
17+
# Check for updates managed by Composer once a week
18+
interval: "weekly"
19+
day: "sunday"
20+
time: "16:00"
21+
22+
# Maintain dependencies for Golang
23+
- package-ecosystem: "gomod"
24+
registries:
25+
- github-octocat
26+
directory: "eventsv1/"
27+
schedule:
28+
# Check for updates managed by Composer once a week
29+
interval: "weekly"
30+
day: "sunday"
31+
time: "16:00"
32+

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
test:
9-
name: Code quality and unit tests
9+
name: Quality Control
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
@@ -38,4 +38,4 @@ jobs:
3838
- name: Test
3939
run: |
4040
# Note: it is by design that we don't use the builder
41-
task test
41+
task test

0 commit comments

Comments
 (0)