Skip to content

Commit

Permalink
Adds support for grouped dependabot updates (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort committed Jul 31, 2023
1 parent 988ba1c commit 972f5db
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
15 changes: 11 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
- "*"
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 972f5db

Please sign in to comment.