generated from Templates/Baseline
OCram85
b699580cc7
### 📖 Summary - add renovate json - add linters: - Dockerfile - markdown - editorconfig ### 📑 Test Plan ✅ CI pipeline tests (Default) ### 💬 Details _No response_ ### 📚 Additional Notes _No response_ Reviewed-on: #6
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Update GiteaChangelog",
|
|
"type": "shell",
|
|
"command": [
|
|
"mv 'CHANGELOG.md' 'CHANGELOG.back' &&",
|
|
"echo '<!-- markdownlint-disable MD041 -->' > CHANGELOG.md &&",
|
|
"changelog -m '${input:Milestone}' --token '${input:GiteaToken}' -c .changelog.yml generate >> CHANGELOG.md &&",
|
|
"echo '' >> CHANGELOG.md &&",
|
|
"cat CHANGELOG.back >> CHANGELOG.md &&",
|
|
"rm CHANGELOG.back"
|
|
],
|
|
"problemMatcher": []
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
"id": "GiteaToken",
|
|
"type": "command",
|
|
"command": "shellCommand.execute",
|
|
"args": {
|
|
"command": "echo $GITEA_TOKEN",
|
|
"description": "Your personal Gitea access token"
|
|
}
|
|
},
|
|
{
|
|
"id": "Milestone",
|
|
"type": "command",
|
|
"command": "shellCommand.execute",
|
|
"args": {
|
|
"description": "Select or enter a open milestone",
|
|
"command": "tea milestone ls -f title --output simple"
|
|
}
|
|
}
|
|
]
|
|
}
|