Skip to content

Commit c3356dc

Browse files
committed
adjusted
1 parent fd9678b commit c3356dc

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
11
version: 2
2+
3+
# Note: Dependabot schedule only supports: daily | weekly | monthly.
4+
25
updates:
36
# Root python dependencies (if used)
47
- package-ecosystem: "pip"
58
directory: "/"
69
schedule:
7-
interval: "weekly"
10+
# interval: "weekly" # higher frequency
11+
interval: "monthly" # lowest supported frequency
812
open-pull-requests-limit: 5
913

1014
# App dependencies
1115
- package-ecosystem: "pip"
1216
directory: "/src"
1317
schedule:
14-
interval: "weekly"
18+
# interval: "weekly"
19+
interval: "monthly"
1520
open-pull-requests-limit: 5
1621

1722
# A2A server dependencies
1823
- package-ecosystem: "pip"
1924
directory: "/src/a2a"
2025
schedule:
21-
interval: "weekly"
26+
# interval: "weekly"
27+
interval: "monthly"
2228
open-pull-requests-limit: 5
2329

2430
# Terraform provider updates
2531
- package-ecosystem: "terraform"
2632
directory: "/terraform-infrastructure"
2733
schedule:
28-
interval: "weekly"
34+
# interval: "weekly"
35+
interval: "monthly"
2936
open-pull-requests-limit: 5

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
branches: ["main"]
8-
schedule:
9-
- cron: "35 2 * * 1" # weekly
8+
# schedule:
9+
# - cron: "35 2 * * 1" # weekly
1010

1111
permissions:
1212
contents: read

0 commit comments

Comments
 (0)