Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for grouped dependabot updates #266

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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