Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure-pipelines/command-metadata-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ extends:
git status
git add "$(System.DefaultWorkingDirectory)/config/ModuleMetadata.json"
git commit -m 'Bump module versions after metadata generation.'
git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
git push "https://x-access-token:$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
git status
- ${{ if eq(parameters.CreatePullRequest, true) }}:
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/common-templates/create-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ steps:
git status
gh auth login
git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
git push "https://x-access-token:$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ steps:
git add .
git commit -m 'Weekly OpenApiDocs Download.'
git status
git push --set-upstream "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git" $(Branch)
git push --set-upstream "https://x-access-token:$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git" $(Branch)
git status
# References
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ steps:
git status
git add "$(System.DefaultWorkingDirectory)/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"
git commit -m 'Add generated MgCommandMetadata.json. [run ci]'
git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
git push "https://x-access-token:$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
git status
2 changes: 1 addition & 1 deletion .azure-pipelines/weekly-examples-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ extends:
git status
git add .
git commit -m "Updating examples"
git push --set-upstream https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git $(ComputeBranch.WeeklyExamplesBranch)
git push --set-upstream "https://x-access-token:$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git" $(ComputeBranch.WeeklyExamplesBranch)
git status
- template: .azure-pipelines/common-templates/create-pr.yml@self
parameters:
Expand Down
Loading