Switch update_pr pipeline job to GitHub App token flow#47150
Merged
Conversation
Copilot
AI
changed the title
Switch to using GitHubApp
Switch update_pr pipeline job to GitHub App token flow
May 27, 2026
Copilot created this pull request from a session on behalf of
chidozieononiwu
May 27, 2026 02:26
View session
4a81cf5 to
3ea0ad5
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the update_pr Azure Pipelines job to authenticate through the shared GitHub App login template instead of directly using the legacy azuresdk-github-pat.
Changes:
- Adds the shared image variable template so the pipeline resolves Linux pool/image variables locally.
- Adds the common
login-to-github.ymlstep withTokenOwners: Azure. - Rewires
packaging_tools.update_prto consumeGH_TOKENfrom the login step.
68c9657 to
3ea0ad5
Compare
Member
|
/azp run azure-sdk-for-python - update_pr |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Member
|
/azp run azure-sdk-for-python - update_pr |
|
Azure Pipelines successfully started running 1 pipeline(s). |
chidozieononiwu
approved these changes
May 27, 2026
9341aa6 to
3251b24
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request removes the
eng/pipelines/templates/jobs/update_pr.ymlpipeline file, which was responsible for updating packaging in pull requests. This simplifies the CI/CD configuration by eliminating an unused or redundant pipeline.Pipeline removal:
Deleted the
update_pr.ymlpipeline, which included steps for setting up Python, installing Azure SDK tools, and running thepackaging_tools.update_prscript for PRs.Part of resolving Use GitHub App & OSS API for codeowners tools instead of GitHub PAT azure-sdk-tools#9842