From 3160112f7dee9ddd955aa5866973d3c4ac6bd6fd Mon Sep 17 00:00:00 2001 From: jz_ Date: Tue, 28 May 2024 16:23:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(repo):=20Add=20dependabot=20con?= =?UTF-8?q?figuration=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ .github/workflows/pull_request.yml | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..236fd6809 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + labels: + - "github-actions" + - "dependencies" + reviewers: + - "LedgerHQ/live-devices" + # Maintain dependencies for pnpm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + labels: + - "pnpm" + - "dependencies" + reviewers: + - "LedgerHQ/live-devices" diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 7d01a6681..cdc16cedc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -19,7 +19,7 @@ jobs: danger: name: Run Danger check - if: ${{ !contains(github.ref_name, 'dependabot') }} + if: ${{ !contains(github.ref_name, 'dependencies') }} runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v4