generated from Templates/Baseline
🎉 initial setup
All checks were successful
ci/woodpecker/push/lint/1 Pipeline was successful
ci/woodpecker/push/lint/3 Pipeline was successful
ci/woodpecker/push/lint/2 Pipeline was successful
ci/woodpecker/push/renovate Pipeline was successful
ci/woodpecker/manual/lint/2 Pipeline was successful
ci/woodpecker/manual/lint/3 Pipeline was successful
ci/woodpecker/manual/lint/1 Pipeline was successful
ci/woodpecker/manual/renovate Pipeline was successful
All checks were successful
ci/woodpecker/push/lint/1 Pipeline was successful
ci/woodpecker/push/lint/3 Pipeline was successful
ci/woodpecker/push/lint/2 Pipeline was successful
ci/woodpecker/push/renovate Pipeline was successful
ci/woodpecker/manual/lint/2 Pipeline was successful
ci/woodpecker/manual/lint/3 Pipeline was successful
ci/woodpecker/manual/lint/1 Pipeline was successful
ci/woodpecker/manual/renovate Pipeline was successful
This commit is contained in:
parent
dadac13c5f
commit
0e94cfaefb
10
.prettierrc
Normal file
10
.prettierrc
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"arrowParens": "always",
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"editorconfig": true,
|
||||||
|
"printWidth": 116,
|
||||||
|
"semi": false,
|
||||||
|
"singleQuote": true,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"vueIndentScriptAndStyle": true
|
||||||
|
}
|
2
.vscode/dictionaries/project-words.txt
vendored
2
.vscode/dictionaries/project-words.txt
vendored
@ -1 +1,3 @@
|
|||||||
|
autodiscover
|
||||||
|
automerge
|
||||||
tbd
|
tbd
|
||||||
|
19
.vscode/settings.json
vendored
19
.vscode/settings.json
vendored
@ -9,20 +9,6 @@
|
|||||||
"editor.rulers": [
|
"editor.rulers": [
|
||||||
116
|
116
|
||||||
],
|
],
|
||||||
// powershell general
|
|
||||||
"powershell.startAutomatically": true,
|
|
||||||
"powershell.enableProfileLoading": true,
|
|
||||||
"powershell.scriptAnalysis.enable": true,
|
|
||||||
// powershell code Formatting
|
|
||||||
"powershell.codeFormatting.openBraceOnSameLine": true,
|
|
||||||
"powershell.codeFormatting.newLineAfterOpenBrace": true,
|
|
||||||
"powershell.codeFormatting.newLineAfterCloseBrace": true,
|
|
||||||
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
|
|
||||||
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
|
|
||||||
"powershell.codeFormatting.whitespaceAroundOperator": true,
|
|
||||||
"powershell.codeFormatting.whitespaceAfterSeparator": true,
|
|
||||||
"powershell.codeFormatting.ignoreOneLineBlock": true,
|
|
||||||
"powershell.codeFormatting.alignPropertyValuePairs": true,
|
|
||||||
// cSpell settings for custom dictionary
|
// cSpell settings for custom dictionary
|
||||||
"cSpell.enabled": true,
|
"cSpell.enabled": true,
|
||||||
"cSpell.caseSensitive": false,
|
"cSpell.caseSensitive": false,
|
||||||
@ -58,7 +44,7 @@
|
|||||||
"yaml",
|
"yaml",
|
||||||
"yml"
|
"yml"
|
||||||
],
|
],
|
||||||
"cSpell.language": "en-US,de-DE",
|
"cSpell.language": "en-US",
|
||||||
"cSpell.customDictionaries": {
|
"cSpell.customDictionaries": {
|
||||||
"project-words": {
|
"project-words": {
|
||||||
"name": "project-words",
|
"name": "project-words",
|
||||||
@ -67,5 +53,6 @@
|
|||||||
"addWords": true
|
"addWords": true
|
||||||
},
|
},
|
||||||
"custom": true
|
"custom": true
|
||||||
}
|
},
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
}
|
}
|
||||||
|
19
.woodpecker/lint.yml
Normal file
19
.woodpecker/lint.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- manual
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
RENOVATE_CONFIG_FILE:
|
||||||
|
- config.js
|
||||||
|
- default.json
|
||||||
|
- renovate.json
|
||||||
|
|
||||||
|
steps:
|
||||||
|
lint:
|
||||||
|
image: renovate/renovate:37
|
||||||
|
pull: true
|
||||||
|
commands:
|
||||||
|
- renovate-config-validator
|
||||||
|
environment:
|
||||||
|
LOG_LEVEL: debug
|
32
.woodpecker/renovate.yml
Normal file
32
.woodpecker/renovate.yml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
when:
|
||||||
|
event:
|
||||||
|
- cron
|
||||||
|
- push
|
||||||
|
- manual
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- lint
|
||||||
|
|
||||||
|
steps:
|
||||||
|
renovate-dry:
|
||||||
|
image: renovate/renovate:37
|
||||||
|
secrets: [renovate_token, github_com_token]
|
||||||
|
pull: true
|
||||||
|
environment:
|
||||||
|
RENOVATE_CONFIG_FILE: config.js
|
||||||
|
LOG_LEVEL: debug
|
||||||
|
RENOVATE_DRY_RUN: full
|
||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
|
||||||
|
renovate:
|
||||||
|
image: renovate/renovate:37
|
||||||
|
secrets: [renovate_token, github_com_token]
|
||||||
|
pull: true
|
||||||
|
environment:
|
||||||
|
RENOVATE_CONFIG_FILE: config.js
|
||||||
|
LOG_LEVEL: info
|
||||||
|
when:
|
||||||
|
- event: cron
|
||||||
|
cron: renovate
|
||||||
|
- event: manual
|
18
config.js
Normal file
18
config.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
module.exports = {
|
||||||
|
platform: 'gitea',
|
||||||
|
endpoint: 'https://gitea.ocram85.com',
|
||||||
|
gitAuthor: 'renovate-bot <renovate@ocram85.com>',
|
||||||
|
autodiscover: true,
|
||||||
|
prHourlyLimit: 10,
|
||||||
|
automerge: false,
|
||||||
|
major: {
|
||||||
|
automerge: false,
|
||||||
|
},
|
||||||
|
automergeType: 'pr',
|
||||||
|
automergeStrategy: 'squash',
|
||||||
|
labels: ['renovate'],
|
||||||
|
dependencyDashboardLabels: ['renovate'],
|
||||||
|
githubTokenWarn: false,
|
||||||
|
semanticCommits: 'enabled',
|
||||||
|
autodiscoverFilter: ['OCram85/*', 'CodeServer/*', 'renovate-bot/*'],
|
||||||
|
}
|
12
default.json
Normal file
12
default.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": ["config:recommended"],
|
||||||
|
"dependencyDashboard": true,
|
||||||
|
"enabledManagers": ["dockerfile", "docker-compose", "woodpecker", "bun", "npm", "nodenv"],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchDatasources": ["docker"],
|
||||||
|
"registryUrls": ["https://mirror.ocram85.com"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
4
renovate.json
Normal file
4
renovate.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": ["local>renovate-bot/config"]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user