From 19db2882bd8274f4c7b9e4f45b1bfa837e910010 Mon Sep 17 00:00:00 2001 From: jmeridth Date: Wed, 24 Apr 2024 22:53:41 -0500 Subject: [PATCH] chore(deps): update dependabot config to include pr prefixes Closes #122 Closes #123 Add commit-message.prefix config option to dependabot so that dependabot pull request titles pass our new PR Title Linting workflow - [x] include current dependency updates (black and mypy) Signed-off-by: jmeridth --- .github/dependabot.yml | 10 ++++++---- .github/pull_request_template.md | 2 +- requirements-test.txt | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 672c03b..06abb02 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,3 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates --- version: 2 updates: @@ -9,11 +5,17 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + commit-message: + prefix: "chore(deps)" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" + commit-message: + prefix: "chore(deps)" - package-ecosystem: "docker" directory: "/" schedule: interval: "daily" + commit-message: + prefix: "chore(deps)" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a2b7f41..7573256 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -21,4 +21,4 @@ examples: "feat: add new logger" or "fix: remove unused imports" ### Reviewer -- [ ] Label as either `fix`, `documentation`, `enhancement`, `infrastructure`, or `breaking` +- [ ] Label as either `fix`, `documentation`, `enhancement`, `infrastructure`, `maintenance` or `breaking` diff --git a/requirements-test.txt b/requirements-test.txt index 328760d..61d929b 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -black==24.4.0 +black==24.4.1 flake8==7.0.0 -mypy==1.9.0 +mypy==1.10.0 mypy-extensions==1.0.0 pylint==3.1.0 pytest==8.1.1