From 9accf03e92cfbf79ab378566fa04b116022ff2da Mon Sep 17 00:00:00 2001 From: Naoto Ono Date: Mon, 29 May 2023 08:29:44 +0900 Subject: [PATCH] chore: add Dependabot (#329) --- .github/dependabot.yaml | 38 ++++++++++++++++++++++++++++++++++++++ .github/workflows/cla.yaml | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 000000000..09414fa46 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,38 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + time: "10:00" + timezone: "Asia/Tokyo" + commit-message: + prefix: "build" + include: "scope" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "monthly" + time: "10:00" + timezone: "Asia/Tokyo" + commit-message: + prefix: "build" + include: "scope" + - package-ecosystem: "npm" + directory: "/ui" + schedule: + interval: "monthly" + time: "10:00" + timezone: "Asia/Tokyo" + commit-message: + prefix: "build" + include: "scope" + - package-ecosystem: "pip" + directory: "/python" + schedule: + interval: "monthly" + time: "10:00" + timezone: "Asia/Tokyo" + commit-message: + prefix: "build" + include: "scope" diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index e925f66f8..0f937584d 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -24,4 +24,4 @@ jobs: custom-allsigned-prcomment: "All Contributors have signed the CLA." lock-pullrequest-aftermerge: false branch: "main" - allowlist: github-actions,renovate[bot] + allowlist: github-actions,renovate[bot],dependabot[bot]