From 160d7c2a9e664d0380a3f5d56658d1e2023b9ef1 Mon Sep 17 00:00:00 2001 From: Lingfan Gao Date: Mon, 19 Sep 2022 12:50:19 +0200 Subject: [PATCH 1/2] fix: Set github user in nightly release pipeline --- azure-pipelines.release-vnext-nightly.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.release-vnext-nightly.yml b/azure-pipelines.release-vnext-nightly.yml index 1299c378490a67..d2a565f635900b 100644 --- a/azure-pipelines.release-vnext-nightly.yml +++ b/azure-pipelines.release-vnext-nightly.yml @@ -37,6 +37,11 @@ jobs: steps: - template: .devops/templates/tools.yml + - script: | + git config user.name "Fluent UI Build" + git config user.email "fluentui-internal@service.microsoft.com" + displayName: Configure git user (used by beachball) + - task: Bash@3 inputs: filePath: yarn-ci.sh From 7492e8c1ad620c8493bc9ee3f8992c24f3cefbe6 Mon Sep 17 00:00:00 2001 From: Lingfan Gao Date: Wed, 21 Sep 2022 14:05:31 +0200 Subject: [PATCH 2/2] use rm -f --- azure-pipelines.release-vnext-nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.release-vnext-nightly.yml b/azure-pipelines.release-vnext-nightly.yml index d2a565f635900b..cc956a1a801125 100644 --- a/azure-pipelines.release-vnext-nightly.yml +++ b/azure-pipelines.release-vnext-nightly.yml @@ -49,7 +49,7 @@ jobs: # Deletes all existing changefiles so that only bump that happens is for nightly - script: | - rm change/* + rm -f change/* displayName: 'Delete existing changefiles' # Bumps all v9 packages to a x.x.x-nightly.commitSha version and checks in change files