generated from Templates/Baseline
OCram85
08d5be0469
#### 📖 Summary - update changelog #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Reviewed-on: #23
38 lines
1000 B
JSON
38 lines
1000 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Update GiteaChangelog",
|
|
"type": "shell",
|
|
"command": [
|
|
"mv 'CHANGELOG.md' 'CHANGELOG.back' &&",
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
}
|