From fcf5312b9a350e434d8e1d9201a487cecb264761 Mon Sep 17 00:00:00 2001 From: Marta Anon Date: Wed, 13 May 2026 17:22:09 +0200 Subject: [PATCH] feat: add Renovate automation for OpenShell version pin Replace Dependabot with Renovate to track the OPENSHELL_VERSION pin in the composite action. A regex custom manager matches the env var pattern and opens PRs when new NVIDIA/OpenShell tags are published. The git-submodules manager replaces Dependabot's submodule tracking. Closes #773 Co-Authored-By: Claude Opus 4.6 --- .github/dependabot.yml | 6 ------ renovate.json | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 6 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 renovate.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index db6645087..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "gitsubmodule" - directory: "/" - schedule: - interval: "daily" diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..eefd9408f --- /dev/null +++ b/renovate.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "git-submodules": { + "enabled": true + }, + "customManagers": [ + { + "customType": "regex", + "description": "Track OpenShell version pin in composite action", + "fileMatch": [ + "internal/scaffold/fullsend-repo/\\.github/actions/fullsend/action\\.yml$" + ], + "matchStrings": [ + "OPENSHELL_VERSION=v(?\\d+\\.\\d+\\.\\d+)" + ], + "depNameTemplate": "NVIDIA/OpenShell", + "datasourceTemplate": "github-tags", + "extractVersionTemplate": "^v(?.*)$" + } + ] +}