Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .pipelines/build-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ stages:
env:
config: '${{ parameters.traceLoggingConfig }}'

- script: echo "Build requested for email - $(Build.RequestedForEmail)"
displayName: "Log build requested for email"
Comment on lines +155 to +156
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This step logs $(Build.RequestedForEmail) directly into build logs. Email addresses are PII and can end up retained/shared beyond the original audience of the notification. If the intent is troubleshooting, consider removing this log or masking the value (e.g., log only the domain or a hashed/obfuscated form), or use a non-PII identifier instead.

Suggested change
- script: echo "Build requested for email - $(Build.RequestedForEmail)"
displayName: "Log build requested for email"
- script: echo "Build requested for - $(Build.RequestedFor)"
displayName: "Log build requested for user"

Copilot uses AI. Check for mistakes.

- task: PowerShell@2
displayName: "Compute package version"
name: version
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/test-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
TestTimeout: "0.05:00:00"
parserProperties: "worker:VsTestVersion=V150;session:HoldTrigger=Failure;VstsTestResultAttachmentUploadBehavior=Always"
notificationSubscribers: $(Build.RequestedForEmail)
scheduleBuildRequesterAlias: "lowdev"
scheduleBuildRequesterAlias: $(Build.RequestedForEmail)
Loading