From a448f4d3ac0be2a667c3db796808441a45c5bf1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:23:43 +0100 Subject: [PATCH] ci: Dependabot groups (#69) `pyo3` and `pythonize` need to be updated together, as there can only be one `pyo3` version in the dependency tree. Adds a dependabot update group for them, as well as the group config we setup for `tket2`. --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 95cbee9..ed44ffe 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,3 +12,22 @@ updates: commit-message: # Use a conventional commit tag prefix: "chore(deps)" + groups: + hugr: + patterns: ["pyo3", "pythonize"] + dev: + dependency-type: "development" + update-types: ["patch", "minor"] + patch: + update-types: ["patch"] + minor: + update-types: ["minor"] + # Major updates still generate individual PRs + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + # Use a conventional commit tag + prefix: "ci(deps)"