Compare commits

..

1 commit

Author SHA1 Message Date
TravisEz13 862aa39191 Update to the latest notice file 2021-11-10 21:00:06 +00:00
5 changed files with 7 additions and 2927 deletions

View file

@ -72,17 +72,14 @@ jobs:
git status --short
- name: Check if we need to create a PR
run: |
$ErrorActionPreference = 'continue'
git diff --quiet ThirdPartyNotices.txt
$exitCode = $LASTEXITCODE
Write-Verbose -Message "Exit code: $exitCode" -Verbose
if ($LASTEXITCODE -ne 0) {
Import-Module ./.github/workflows/GHWorkflowHelper
Set-GWVariable -Name CREATE_PR -Value 'true'
} else {
Write-Verbose "No difference found. Not creating a PR." -Verbose
}
exit 0
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
id: cprtpn

View file

@ -6,10 +6,10 @@
"packageVersionPattern": "6.0.0",
"sdkImageVersion": "6.0.100",
"nextChannel": "6.0.1xx",
"azureFeed": "",
"sdkImageOverride": ""
"azureFeed": "https://dotnetstage.blob.core.windows.net/6-0-100-rtm-21527-11-public",
"sdkImageOverride": "6.0.100-rtm.21527.11"
},
"internalfeed" : {
"url": ""
"url": "https://pkgs.dev.azure.com/dnceng/public/_packaging/6.0.100-rtm.21527.11-shipping/nuget/v2"
}
}

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,9 @@
<configuration>
<packageSources>
<clear />
<add key="dotnet" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v2" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-internal" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/6.0.100-rtm.21524.1-shipping/nuget/v2" />
</packageSources>
<disabledPackageSources>
<clear />

View file

@ -24,22 +24,6 @@ jobs:
- checkout: self
clean: true
- pwsh: |
[string]$Branch=$env:BUILD_SOURCEBRANCH
$branchOnly = $Branch -replace '^refs/heads/';
$branchOnly = $branchOnly -replace '[_\-]'
if ($branchOnly -eq 'master') {
$container = 'tpn'
} else {
$container = "tpn-$branchOnly"
}
$vstsCommandString = "vso[task.setvariable variable=tpnContainer]$container"
Write-Verbose -Message $vstsCommandString -Verbose
Write-Host -Object "##$vstsCommandString"
displayName: Set ContainerName
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
displayName: 'Component Detection'
inputs:
@ -74,7 +58,7 @@ jobs:
azureSubscription: '$(AzureFileCopySubscription)'
Destination: AzureBlob
storage: '$(StorageAccount)'
ContainerName: $(tpnContainer)
ContainerName: 'tpn'
resourceGroup: '$(StorageResourceGroup)'
- task: PublishPipelineArtifact@1