Skip to content

Commit

Permalink
ci: does not use yaml anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
ymgyt committed Sep 5, 2024
1 parent 3890f83 commit d6ed793
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule: &schedule
schedule:
interval: weekly
time: "07:00"
timezone: "Asia/Tokyo"
labels: ["kind/dependencies", "area/github_actions"]
- package-ecosystem: cargo
directory: /
schedule: *schedule
schedule: # github does not support yaml anchors
interval: weekly
time: "07:00"
timezone: "Asia/Tokyo"
labels: ["kind/dependencies", "area/rust"]
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
# If a dependency doesn't belong to any group, Dependabot will continue to raise single pull requests to update the dependency to its latest version as normal.
Expand Down

0 comments on commit d6ed793

Please sign in to comment.