Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

version: 2
updates:
# GitHub Actions updates targeting the default branch (main)
- package-ecosystem: github-actions
directory: /
schedule:
Expand All @@ -19,3 +20,21 @@ updates:
applies-to: version-updates
patterns: ["*"]
update-types: ["major", "minor", "patch"]

# GitHub Actions updates targeting the 12.9.x branch
- package-ecosystem: github-actions
directory: /
target-branch: "12.9.x" # keep in sync with backport_branch in ci/versions.yml
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately hard-coding it seems to be the only way as per the dependabot doc and Copilot (leofang#15 (comment)).

schedule:
interval: "monthly"
time: "09:00"
timezone: "America/Los_Angeles"

# Keep churn down: only one open PR from this ecosystem at a time
open-pull-requests-limit: 1

groups:
actions-monthly:
applies-to: version-updates
patterns: ["*"]
update-types: ["major", "minor", "patch"]
2 changes: 1 addition & 1 deletion ci/versions.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

backport_branch: "12.9.x"
backport_branch: "12.9.x" # keep in sync with target-branch in .github/dependabot.yml

cuda:
build:
Expand Down