Skip to content

Instantly share code, notes, and snippets.

@MarcusFelling
Last active November 4, 2019 19:47
Show Gist options
  • Save MarcusFelling/a93bc07e163df2b6ad4ee6ecd931d2c9 to your computer and use it in GitHub Desktop.
Save MarcusFelling/a93bc07e163df2b6ad4ee6ecd931d2c9 to your computer and use it in GitHub Desktop.
{
"manifestVersion": 1,
"id": "pipelinedecorator",
"name": "SonarQube Decorator Example",
"version": "1.0.2",
"publisher": "MarcusFelling-Blog",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "SonarQube Decorator Example",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/extension-icon.png"
},
"files": [
{
"path": "SonarQubeDecoratorPrepare.yml",
"addressable": true,
"contentType": "text/plain"
},
{
"path": "SonarQubeDecoratorAnalysis.yml",
"addressable": true,
"contentType": "text/plain"
}
],
"contributions": [
{
"id": "sonarqube-prepare",
"type": "ms.azure-pipelines.pipeline-decorator",
"targets": [
"ms.azure-pipelines-agent-job.pre-job-tasks"
],
"properties": {
"template": "SonarQubeDecoratorPrepare.yml"
}
},
{
"id": "sonarqube-analysis",
"type": "ms.azure-pipelines.pipeline-decorator",
"targets": [
"ms.azure-pipelines-agent-job.post-job-tasks"
],
"properties": {
"template": "SonarQubeDecoratorAnalysis.yml"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment