Compare commits
2 Commits
v0.2.2
...
1808debb93
| Author | SHA1 | Date | |
|---|---|---|---|
| 1808debb93 | |||
| 80eb37d8ed |
@@ -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 }}
|
||||||
|
|||||||
@@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user