From d24d80a09483d2c1a553a34346ce9aa424ded90c Mon Sep 17 00:00:00 2001 From: jokemanfire Date: Wed, 21 May 2025 11:09:01 +0800 Subject: [PATCH] chore: add dependbot for check dep (#204) Signed-off-by: jokemanfire --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..bdd4faf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + labels: + - T-dependencies + open-pull-requests-limit: 3 + commit-message: + prefix: "chore" + include: "scope" + + # Ensure that references to actions in a repository's workflow.yml file are kept up to date. + # See https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + labels: + # Mark PRs as CI related change. + - T-CI + open-pull-requests-limit: 3 + commit-message: + prefix: "chore" + include: "scope" \ No newline at end of file