Skip to content

Commit 4d4eb5d

Browse files
committed
refactor: update cli-config.schema
1 parent eb51da5 commit 4d4eb5d

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

resources/schemas/cli.config.schema.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
properties:
1818
npm: { $ref: dependabot }
1919
docker: { $ref: dependabot }
20-
github-actions: { $ref: dependabot }
20+
github-actions: { $ref: dependabot-github-actions }
2121
additionalProperties: false
2222

2323
executables:
@@ -222,6 +222,19 @@
222222
required: [meta, release, commits]
223223

224224
- $id: dependabot
225+
type: object
226+
properties:
227+
enabled: { type: boolean }
228+
interval: { enum: [cron, daily, weekly, monthly, quarterly, semiannually, yearly] }
229+
cronjob: { type: string, format: cron }
230+
day: { type: string, format: weekday }
231+
time: { type: string, format: time }
232+
timezone: { type: string, format: timezone }
233+
open-pull-requests-limit: { type: integer, minimum: 0 }
234+
235+
additionalProperties: false
236+
237+
- $id: dependabot-github-actions
225238
type: object
226239
properties:
227240
enabled: { type: boolean }

0 commit comments

Comments
 (0)