From 0cc134baaedf973cdc9e148a5561759c29f20c39 Mon Sep 17 00:00:00 2001 From: Chris <105302830+datengraben@users.noreply.github.com> Date: Wed, 21 Feb 2024 17:52:38 +0100 Subject: [PATCH 1/2] dependabot: initial npm config --- .github/dependabot.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..f654d46 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,18 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' + + # Maintain dependencies for npm + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'weekly' + allow: + - dependency-name: '*' + dependency-type: 'production' + commit-message: + include: 'scope' From 74308a89ef7ff707f8a5e3de372119ced03fba77 Mon Sep 17 00:00:00 2001 From: Chris <105302830+datengraben@users.noreply.github.com> Date: Wed, 21 Feb 2024 17:54:36 +0100 Subject: [PATCH 2/2] Remove production tag, we have no 'real' dependencies --- .github/dependabot.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index f654d46..4d52014 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -11,8 +11,5 @@ updates: directory: '/' schedule: interval: 'weekly' - allow: - - dependency-name: '*' - dependency-type: 'production' commit-message: include: 'scope'