From 972f5db04f7bb4d3e5dde6a749c1a8ed3deb243d Mon Sep 17 00:00:00 2001 From: Daniel Perrefort Date: Mon, 31 Jul 2023 10:48:31 -0400 Subject: [PATCH] Adds support for grouped dependabot updates (#266) --- .github/dependabot.yml | 15 +++++++++++---- pyproject.toml | 5 +++-- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index deda11a..ec40357 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,12 +4,19 @@ updates: directory: "/" schedule: interval: "monthly" - open-pull-requests-limit: 100 - ignore: - - dependency-name: "sphinx-jsonschema" # Newer versions of sphinx-jsonschema have compatibility issues + open-pull-requests-limit: 10 + python-dependencies: + patterns: + - "*" + documentation-dependencies: + patterns: + - "sphinx*" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" - open-pull-requests-limit: 100 + open-pull-requests-limit: 10 + actions-dependencies: + patterns: + - "*" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 47da968..914b5b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,16 +5,17 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "quota-notifier" version = "0.0.0" # Version is set dynamically by the CI tool on publication -authors = ["Pitt Center for Research Computing", ] +authors = ["Pitt Center for Research Computing"] readme = "README.md" description = "Automatic email notification tool for disk quota usage." homepage = "https://github.com/pitt-crc/quota_notifier" repository = "https://github.com/pitt-crc/quota_notifier" documentation = "https://crc-pages.pitt.edu/quota_notifier/" -keywords = ["disk", "usage", "quota", "notify", "email", ] +keywords = ["disk", "usage", "quota", "notify", "email"] classifiers = [ "Environment :: Console", "Intended Audience :: System Administrators", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",