Skip to content

Commit 46f4156

Browse files
committed
v1.2.1
1 parent 1cc31f7 commit 46f4156

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

lib/msdo-client.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ class MsdoClient {
108108
tl.setVariable('MSDO_SARIF_FILE', sarifFile);
109109
args.push('--export-breaking-results-to-file');
110110
args.push(`${sarifFile}`);
111+
args.push('--environment-name');
112+
args.push('azdevops');
111113
}
112114
catch (error) {
113115
error('Exception occurred while initializing MSDO:');

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft-security-devops-azdevops-task-lib",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Microsoft Security DevOps for Azure DevOps task library.",
55
"author": "Microsoft Corporation",
66
"license": "MIT",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft-security-devops-azdevops-task-lib",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Microsoft Security DevOps for Azure DevOps task library.",
55
"author": "Microsoft Corporation",
66
"license": "MIT",

src/msdo-client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ export class MsdoClient {
9999

100100
args.push('--export-breaking-results-to-file');
101101
args.push(`${sarifFile}`);
102+
103+
args.push('--environment-name');
104+
args.push('azdevops');
102105
} catch (error) {
103106
error('Exception occurred while initializing MSDO:');
104107
error(error);

0 commit comments

Comments
 (0)