Skip to content

Commit a7af83d

Browse files
authored
Bugfix: Fix dependabot error on #/updates/0/schedule/time (#115)
dependabot.yml validation failed after merging to main (https://github.com/mnako/cookiecutter-django-postgres-redis-celery/runs/17486383390) with error ``` The property '#/updates/0/schedule/time' of type integer did not match the following type: string ``` Looks like Dependabot is _not_ using YAML 1.2 and interpreting `18:00` as a base-60 integer. All the more reasons to add a strict YAML linter, but for now let me just quote the time.
1 parent 4af44d4 commit a7af83d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ updates:
66
schedule:
77
interval: weekly
88
day: friday
9-
time: 18:00
9+
time: "18:00"
1010
timezone: Asia/Tokyo

0 commit comments

Comments
 (0)