From 91219a5cf84061a36fd08f86012e9b728a3f3ccb Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Fri, 19 Apr 2024 20:49:33 +0800 Subject: [PATCH] Use renovate (#10422) * Use renovate * Add more ignore --- .github/renovate.json5 | 15 +++++++++++++++ .github/workflows/nightly.yml | 13 ------------- 2 files changed, 15 insertions(+), 13 deletions(-) create mode 100644 .github/renovate.json5 delete mode 100644 .github/workflows/nightly.yml diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 000000000000..2dcf853436a3 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,15 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base", "schedule:weekly", "group:allNonMajor"], + "labels": ["dependencies"], + "rangeStrategy": "bump", + "ignoreDeps": [ + // manually bumping + "@biomejs/biome", + "@types/node", + "sharp", + + // follow vite deps version + "postcss-load-config", + ], +} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml deleted file mode 100644 index 2a3bfd1948b7..000000000000 --- a/.github/workflows/nightly.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Nightly - -on: - schedule: - # Run every Monday at 12:00 UTC - - cron: "0 12 * * 1" - workflow_dispatch: - -jobs: - lockfile: - if: github.repository_owner == 'withastro' - uses: withastro/automation/.github/workflows/lockfile.yml@main - secrets: inherit