From e187c89e824c815d7ffd9ad10703ea45b32cda41 Mon Sep 17 00:00:00 2001 From: Henriette Lien Rebnor <122604807+henriettelienrebnor@users.noreply.github.com> Date: Mon, 10 Feb 2025 15:16:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Add=20depandabot=20=F0=9F=A4=96?= =?UTF-8?q?=20=20(#87)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Aim of the PR This PR fixes [AB#233057](https://dev.azure.com/EquinorASA/bb9bd8cb-74f7-4ffa-b0cb-60eff0a0be58/_workitems/edit/233057) ## Implementation Add a depandabot workflow: - check for python package upgrades - check for nuget package upgrades - check for npm package upgrades ## Type of change - [ ] Bug fix - [x] New feature - [ ] Breaking change - [ ] This change requires a documentation update --- .github/depandabot.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/depandabot.yml diff --git a/.github/depandabot.yml b/.github/depandabot.yml new file mode 100644 index 0000000..1f49df5 --- /dev/null +++ b/.github/depandabot.yml @@ -0,0 +1,39 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "main" + schedule: + interval: "weekly" + day: "monday" + time: "06:00" + + - package-ecosystem: "pip" + directory: "/cli/chex/" + target-branch: "main" + labels: + - "Pip deps" + schedule: + interval: "weekly" + day: "monday" + time: "06:00" + + - package-ecosystem: "nuget" + directory: "/client/Boundaries/" + target-branch: "main" + labels: + - "nuget deps" + schedule: + interval: "weekly" + day: "monday" + time: "06:00" + + - package-ecosystem: "npm" + directory: "/www/" + target-branch: "main" + labels: + - "npm deps" + schedule: + interval: "weekly" + day: "monday" + time: "06:00" \ No newline at end of file