-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump cookiecutter template to 15dd51 (#58)
# Changes - bumped cookiecutter template to robert-koch-institut/mex-template@15dd51 # Conflicts ```diff a/pyproject.toml b/pyproject.toml (rejected hunks) @@ -9,15 +9,15 @@ urls = { Repository = "https://github.com/robert-koch-institut/mex-backend" } requires-python = "<3.13,>=3.11" dependencies = [] optional-dependencies.dev = [ - "black>=24.3.0", - "ipdb>=0.13.13", - "mypy>=1.9.0", - "pytest-cov>=4.1.0", - "pytest-random-order>=1.1.1", - "pytest-xdist>=3.5.0", - "pytest>=8.1.1", - "ruff>=0.3.5", - "sphinx>=7.2.6", + "black==24.3.0", + "ipdb==0.13.13", + "mypy==1.9.0", + "pytest-cov==4.1.0", + "pytest-random-order==1.1.1", + "pytest-xdist==3.5.0", + "pytest==8.1.1", + "ruff==0.3.5", + "sphinx==7.2.6", ] [project.scripts] ```
- Loading branch information
1 parent
81f6316
commit bd98105
Showing
5 changed files
with
60 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Renovate | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: "14 3 * * 1-5" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Run renovatebot | ||
uses: renovatebot/github-action@v40.1.9 | ||
env: | ||
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }} | ||
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-backend" | ||
with: | ||
configurationFile: renovate.json | ||
token: ${{ secrets.WORKFLOW_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"enabledManagers": [ | ||
"github-actions", | ||
"html", | ||
"npm", | ||
"pep621", | ||
"pip_requirements" | ||
], | ||
"gitAuthor": "RKIMetadataExchange <mex@rki.de>", | ||
"lockFileMaintenance": { | ||
"enabled": true, | ||
"schedule": [ | ||
"before 4am on monday" | ||
] | ||
}, | ||
"packageRules": [ | ||
{ | ||
"matchUpdateTypes": [ | ||
"digest", | ||
"lockFileMaintenance", | ||
"major", | ||
"minor", | ||
"patch", | ||
"pin" | ||
], | ||
"minimumReleaseAge": "7 days" | ||
} | ||
] | ||
} |