-
Notifications
You must be signed in to change notification settings - Fork 159
Merge latest from Library.Template #1611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+95
−32
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
6a4e43c
Split the VS PR stage separately from the upload steps
pieandcakes 9ca01b2
Split into jobs instead of stages
AArnott e302f54
Merge pull request 424 from pieandcakes/users/piel/stageinsertion
AArnott d48cdf8
Fix GitHub Actions env file writes (528)
AArnott 910fad8
Update actions/checkout action to v6.0.3
AArnott 72ac8a9
Improve PR checks after fixing dependency PRs
AArnott 937aeb0
Update Microsoft Testing Platform to 18.8.0
AArnott a8d7f71
Merge branch 'main' into microbuild
AArnott 8ce74d4
Support multi-line env var values properly
AArnott 22ebcf5
Centralize the github env var function
AArnott 2de1d1f
Merge pull request #529 from AArnott/betterGitHubEnvVars
AArnott 1600fb8
Merge remote-tracking branch 'origin/main' into microbuild
AArnott 4a5b860
Update dependency powershell to v7.6.3 (#530)
renovate[bot] e57033f
Merge remote-tracking branch 'origin/main' into microbuild
AArnott 3fcf71e
Update actions/checkout action to v7
AArnott 697a943
Merge branch 'main' into microbuild
AArnott 24026df
Merge remote-tracking branch 'origin/microbuild_staging' into microbuild
AArnott 9319738
Update nbgv and nerdbank.gitversioning updates to 3.10.85 (531)
renovate[bot] 3f53cb6
Revert unintended whitespace changes
AArnott 277d401
Merge branch 'main' into microbuild
AArnott 8a8921a
Update jobs to ubuntu 24
AArnott d7904f8
Update Dockerfile and global.json updates (532)
renovate[bot] a1ba569
Update Microsoft Testing Platform to 2.3.0
renovate[bot] 35daa41
Pin Microsoft.Testing.Extensions.Telemetry to the common MTP version
AArnott 3291087
Merge pull request 533 from AArnott/renovate/microsoft-testing-platform
AArnott e11a693
Merge remote-tracking branch 'origin/main' into microbuild
AArnott eba6257
Revert "Use default configuration for Network Isolation" (#534)
AArnott d6e19d2
Merge latest from Library.Template
invalid-email-address File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| function Add-GitHubActionsEnvVariable { | ||
| param( | ||
| [string]$Path = $env:GITHUB_ENV, | ||
| [Parameter(Mandatory = $true)] | ||
| [string]$Name, | ||
| [Parameter(Mandatory = $true)] | ||
| [AllowEmptyString()] | ||
| [string]$Value | ||
| ) | ||
|
|
||
| if ([string]::IsNullOrWhiteSpace($Name)) { | ||
| throw "GitHub Actions environment variable names must not be empty." | ||
| } | ||
|
|
||
| $utf8NoBom = [System.Text.UTF8Encoding]::new($false) | ||
| $delimiter = [guid]::NewGuid().ToString('N') | ||
| [System.IO.File]::AppendAllText($Path, "$Name<<$delimiter`n$Value`n$delimiter`n", $utf8NoBom) | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.