Compare commits

2 Commits

Author SHA1 Message Date
1808debb93 chore(deps): update https://github.com/jrubics/poetry-publish action to v2.1
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Python Linters / formatting (pull_request) Successful in 32s
Python Linters / pylint (pull_request) Successful in 38s
REUSE Compliance / reuse (pull_request) Successful in 7s
Python Linters / mypy (pull_request) Successful in 33s
Selftests / test-sync (pull_request) Successful in 1m1s
Selftests / test-build-install (pull_request) Successful in 1m20s
2025-03-24 21:16:42 +00:00
80eb37d8ed renovate: add automerge
All checks were successful
REUSE Compliance / reuse (push) Successful in 15s
Python Linters / formatting (push) Successful in 36s
Python Linters / pylint (push) Successful in 38s
Python Linters / mypy (push) Successful in 38s
Selftests / test-build-install (push) Successful in 1m8s
Selftests / test-sync (push) Successful in 53s
2025-03-24 22:10:53 +01:00
2 changed files with 14 additions and 1 deletions

View File

@@ -13,6 +13,6 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Build and publish to PyPI - name: Build and publish to PyPI
uses: https://github.com/JRubics/poetry-publish@v2.0 uses: https://github.com/JRubics/poetry-publish@v2.1
with: with:
pypi_token: ${{ secrets.PYPI_TOKEN }} pypi_token: ${{ secrets.PYPI_TOKEN }}

View File

@@ -1,4 +1,17 @@
{ {
$schema: "https://docs.renovatebot.com/renovate-schema.json", $schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["local>renovate-bot/renovate-config"], extends: ["local>renovate-bot/renovate-config"],
"packageRules": [
// Merge all dev dependencies, even major versions
{
"matchDepTypes": ["dev"],
"automerge": true
},
// Merge all other patch and minor dependencies
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
]
} }