You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,15 @@ The API to use the GitHub action or Azure DevOps task is similar
54
54
- `thresholds`: A comma seperated list of thresholds for each of the metrics in bytes. If this is empty, no thresholding will apply. When this is not empty, the task will fail when any of the given thresholds are crossed
55
55
- required: false
56
56
- default: ''
57
+
- `telemetryEnabled`: Set to `false` to disable telemetry
58
+
- required: false
59
+
- default: 'true'
60
+
61
+
# Data Collection
62
+
63
+
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
64
+
65
+
To disable data collection when using this extension, set the `telemetryEnabled` input to `false`
Copy file name to clipboardExpand all lines: action.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,10 @@ inputs:
32
32
description: 'A comma seperated list of thresholds for each of the metrics in bytes. If this is empty, no thresholding will apply. When this is not empty, the task will fail when any of the given thresholds are crossed'
33
33
required: false
34
34
default: ''
35
+
telemetryEnabled:
36
+
description: 'Set to `false` to disable telemetry'
Copy file name to clipboardExpand all lines: src/task.json
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
"version": {
11
11
"Major": 0,
12
12
"Minor": 0,
13
-
"Patch": 29
13
+
"Patch": 30
14
14
},
15
15
"instanceNameFormat": "Android App size change - $(baseAppPath) vs $(targetAppPath)",
16
16
"inputs": [
@@ -69,6 +69,14 @@
69
69
"defaultValue": "",
70
70
"required": false,
71
71
"helpMarkDown": "A comma seperated list of thresholds for each of the metrics in bytes. If this is empty, no thresholding will apply. When this is not empty, the task will fail when any of the given thresholds are crossed."
72
+
},
73
+
{
74
+
"name": "telemetryEnabled",
75
+
"type": "string",
76
+
"label": "Telemetry enabled",
77
+
"defaultValue": "true",
78
+
"required": false,
79
+
"helpMarkDown": "Set to `false` to disable telemetry"
0 commit comments