Compare commits
6 Commits
c422f67bb0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 696b64b9f9 | |||
| ddad8bc565 | |||
| 6781891bd4 | |||
| f8486c03f5 | |||
| f898e39386 | |||
| 7b803e198a |
@@ -20,6 +20,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
||||||
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@3925c92fc33f3d2bc87d28d21ab691b7e6dd6cdf # 0.2.1
|
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@f386e2570df6a796ba0a69865c89ea0c1a7109ab # 0.2.2
|
||||||
with:
|
with:
|
||||||
tag: ${{ steps.tag.outputs.new-tag }}
|
tag: ${{ steps.tag.outputs.new-tag }}
|
||||||
|
|||||||
@@ -15,9 +15,10 @@ jobs:
|
|||||||
- "helm.json"
|
- "helm.json"
|
||||||
- "common.json"
|
- "common.json"
|
||||||
- "docker-compose.json"
|
- "docker-compose.json"
|
||||||
|
- "bun-npm.json"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
- name: Validate "${{ matrix.json-file }}"
|
- name: Validate "${{ matrix.json-file }}"
|
||||||
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@6fe6639f0bb3e2964311ea7b0fbee0adc8514b03 # 0.1.10
|
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@121bd063c7d52c50e99befc9c162f9a40191a184 # 0.1.11
|
||||||
with:
|
with:
|
||||||
json-file: "./${{ matrix.json-file }}"
|
json-file: "./${{ matrix.json-file }}"
|
||||||
|
|||||||
20
bun-npm.json
Normal file
20
bun-npm.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": ["local>t.behrendt/renovate-configs:common"],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"description": "Group all minor and patch updates together",
|
||||||
|
"groupName": "all non-major dependencies",
|
||||||
|
"groupSlug": "all-minor-patch",
|
||||||
|
"matchUpdateTypes": ["minor", "patch"],
|
||||||
|
"matchManagers": ["npm", "bun"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Group Bun releases",
|
||||||
|
"groupName": "bun version",
|
||||||
|
"groupSlug": "bun-version",
|
||||||
|
"matchDatasources": ["github-tags", "docker"],
|
||||||
|
"matchPackageNames": ["docker.io/oven/bun", "oven-sh/bun", "Bun"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -6,14 +6,16 @@
|
|||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "Don't update dependencies unless they are at least 7 days old",
|
"description": "Don't update dependencies unless they are at least 7 days old",
|
||||||
|
"matchPackageNames": ["*"],
|
||||||
"minimumReleaseAge": "7 days",
|
"minimumReleaseAge": "7 days",
|
||||||
"minimumReleaseAgeBehaviour": "timestamp-required",
|
"minimumReleaseAgeBehaviour": "timestamp-required",
|
||||||
"internalChecksFilter": "strict"
|
"internalChecksFilter": "strict"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Exempt local dependencies from the minimum release age",
|
"description": "Exempt local dependencies from the minimum release age (last rule wins over earlier packageRules for the same options)",
|
||||||
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
|
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
|
||||||
"minimumReleaseAge": null
|
"minimumReleaseAge": "0 days",
|
||||||
|
"internalChecksFilter": "none"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user