forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync eng/common directory with azure-sdk-tools for PR 1477 (Azure#17589)
* Checked in the changes directly. * Address feedback and remove the check of set-default-branch * Fixed base repo branch * Update git-branch-push.ps1 * Fixed the docs-metadata-release * Change the typo * Update eng/common/scripts/git-branch-push.ps1 Co-authored-by: Wes Haggard <[email protected]> * Keep origin format * Update git-branch-push.ps1 * Keep fixing the typo Co-authored-by: Sima Zhu <[email protected]> Co-authored-by: Sima Zhu <[email protected]> Co-authored-by: Wes Haggard <[email protected]>
- Loading branch information
1 parent
19f9aba
commit e1a2f6e
Showing
5 changed files
with
111 additions
and
94 deletions.
There are no files selected for viewing
This file contains 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 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 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,54 @@ | ||
parameters: | ||
BaseRepoBranch: not-specified | ||
BaseRepoOwner: azure-sdk | ||
CommitMsg: not-specified | ||
TargetRepoOwner: Azure | ||
TargetRepoName: $(Build.Repository.Name) | ||
PushArgs: | ||
WorkingDirectory: $(System.DefaultWorkingDirectory)' | ||
ScriptDirectory: eng/common/scripts | ||
SkipCheckingForChanges: false | ||
|
||
steps: | ||
- pwsh: | | ||
echo "git add -A" | ||
git add -A | ||
echo "git diff --name-status --cached --exit-code" | ||
git diff --name-status --cached --exit-code | ||
if ($LastExitCode -ne 0) { | ||
echo "##vso[task.setvariable variable=HasChanges]$true" | ||
echo "Changes detected so setting HasChanges=true" | ||
} | ||
else { | ||
echo "##vso[task.setvariable variable=HasChanges]$false" | ||
echo "No changes so skipping code push" | ||
} | ||
displayName: Check for changes | ||
condition: and(succeeded(), eq(${{ parameters.SkipCheckingForChanges }}, false)) | ||
workingDirectory: ${{ parameters.WorkingDirectory }} | ||
ignoreLASTEXITCODE: true | ||
|
||
- pwsh: | | ||
# Remove the repo owner from the front of the repo name if it exists there | ||
$repoName = "${{ parameters.TargetRepoName }}" -replace "^${{ parameters.TargetRepoOwner }}/", "" | ||
echo "##vso[task.setvariable variable=RepoNameWithoutOwner]$repoName" | ||
echo "RepoName = $repoName" | ||
displayName: Remove Repo Owner from Repo Name | ||
condition: succeeded() | ||
workingDirectory: ${{ parameters.WorkingDirectory }} | ||
|
||
- task: PowerShell@2 | ||
displayName: Push changes | ||
condition: and(succeeded(), eq(variables['HasChanges'], 'true')) | ||
inputs: | ||
pwsh: true | ||
workingDirectory: ${{ parameters.WorkingDirectory }} | ||
filePath: ${{ parameters.ScriptDirectory }}/git-branch-push.ps1 | ||
arguments: > | ||
-PRBranchName "${{ parameters.BaseRepoBranch }}" | ||
-CommitMsg "${{ parameters.CommitMsg }}" | ||
-GitUrl "https://$(azuresdk-github-pat)@github.com/${{ parameters.BaseRepoOwner }}/$(RepoNameWithoutOwner).git" | ||
-PushArgs "${{ parameters.PushArgs }}" | ||
-SkipCommit $${{ parameters.SkipCheckingForChanges }} |
This file contains 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 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