From be76178a264cc683e09a6afd89ffceb06bf7e638 Mon Sep 17 00:00:00 2001 From: Lars Date: Sat, 29 Jun 2024 20:32:35 -0500 Subject: [PATCH] use prod nuget server and fix pr validation (#1370) --- .github/workflows/pr-validation.yml | 4 +++- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 4511186835..9679b194c5 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -21,5 +21,7 @@ jobs: !contains(github.event.pull_request.labels.*.name, 'bug') && !contains(github.event.pull_request.labels.*.name, 'enhancement') && !contains(github.event.pull_request.labels.*.name, 'breaking-change') && - !contains(github.event.pull_request.labels.*.name, 'no-changelog') + !contains(github.event.pull_request.labels.*.name, 'dependencies') && + !contains(github.event.pull_request.labels.*.name, 'no-changelog') && + !contains(github.event.pull_request.labels.*.name, 'documentation') run: exit 1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18e8553f04..3a8b0712d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true - NUGET_SOURCE: 'https://nuget.pkg.github.com/latonz/index.json' #'https://api.nuget.org/v3/index.json' + NUGET_SOURCE: 'https://api.nuget.org/v3/index.json' concurrency: group: ${{ github.workflow }}