From 38fcffe871ed86693e6f2549404ed5c159099aa8 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 28 Dec 2021 13:58:57 -0600 Subject: [PATCH] Identify user for git --- azure-pipelines.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 14749108f..e9ea6e4e8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -844,10 +844,15 @@ stages: - checkout: self # Need history for Sonar analysis submodules: true - bash: ./docs.sh Windows - displayName: Create Openapi.json - - bash: git commit -am 'Automated API Docs update' - displayName: Commit APIDoc Change + displayName: Create openapi.json + - bash: | + git config --global user.email "development@lidarr.audio" + git config --global user.name "Servarr" + git add . + git commit -m 'Automated API Docs update' + displayName: Commit API Doc Change - task: CreatePullRequest@1 + displayName: PR Change to Github inputs: repoType: 'GitHub' githubEndpoint: 'github release'