Enable auto-merge for release note automated PRs

This commit is contained in:
Wes Haggard 2023-07-07 14:04:59 -07:00 коммит произвёл GitHub
Родитель fb3c8936a8
Коммит 11d21d63b3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -115,3 +115,11 @@ steps:
PRBody: "This is an automated pull request to gather the ${{ repo.value.Language }} release notes for the $(ReleasePeriod) release. See [Producing Release Notes](https://github.com/Azure/azure-sdk/blob/main/docs/policies/releasenotes.md#producing-release-notes) for details of the processing."
WorkingDirectory: $(AzureSDKReleaseNotesClonePath)
ScriptDirectory: $(AzureSDKToolsScriptsPath)
- pwsh: |
gh pr merge $(Submitted.PullRequest.Number) --auto --squash
condition: and(succeeded(), eq(variables['HasChanges'], 'true'))
displayName: Apply AutoMerge to Pull Request
workingDirectory: $(AzureSDKReleaseNotesClonePath)
env:
GH_TOKEN: $(azuresdk-github-pat)