-
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.
feature/template maintenance and consistency (#15)
# Added - configure renovatebot for mex-template itself # Changes - harmonize git and docker ignore files - update requirements, actions and sample dependencies # Fixed - fix `export-all` pdm script --------- Signed-off-by: Nicolas Drebenstedt <[email protected]> Co-authored-by: Eric Hesse <[email protected]>
- Loading branch information
1 parent
15dd517
commit 25c36c4
Showing
12 changed files
with
102 additions
and
28 deletions.
There are no files selected for viewing
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/[email protected] | ||
env: | ||
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }} | ||
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-template" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,3 +116,10 @@ dmypy.json | |
|
||
# SQLite databases | ||
*.db | ||
|
||
# Default exports | ||
*.ndjson | ||
data/ | ||
identity.csv | ||
schema.json | ||
work/ |
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
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
fetch-depth: 1 | ||
|
||
- name: Run renovatebot | ||
uses: renovatebot/[email protected].9 | ||
uses: renovatebot/[email protected].11 | ||
env: | ||
RENOVATE_GIT_PRIVATE_KEY: {% raw %}${{ secrets.GPG_SIGNING_KEY }}{% endraw %} | ||
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-{{ cookiecutter.project_name }}" | ||
|
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 |
---|---|---|
|
@@ -116,3 +116,10 @@ dmypy.json | |
|
||
# SQLite databases | ||
*.db | ||
|
||
# Default exports | ||
*.ndjson | ||
data/ | ||
identity.csv | ||
schema.json | ||
work/ |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cruft==2.15.0 | ||
pdm==2.13.2 | ||
pre-commit==3.7.0 | ||
pdm==2.15.2 | ||
pre-commit==3.7.1 | ||
wheel==0.43.0 |
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 <[email protected]>", | ||
"lockFileMaintenance": { | ||
"enabled": true, | ||
"schedule": [ | ||
"before 4am on monday" | ||
] | ||
}, | ||
"packageRules": [ | ||
{ | ||
"matchUpdateTypes": [ | ||
"digest", | ||
"lockFileMaintenance", | ||
"major", | ||
"minor", | ||
"patch", | ||
"pin" | ||
], | ||
"minimumReleaseAge": "7 days" | ||
} | ||
] | ||
} |