Skip to content

Change sync alias.yml #20899

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
Feb 10, 2023
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4990a26
Set up first CI try with Azure Pipelines
greathongtu Jan 13, 2023
103ba72
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 13, 2023
874fdae
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 13, 2023
226983a
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 13, 2023
21b9335
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 13, 2023
22414ff
Merge pull request #1 from xtR0d666/pipeline_try
greathongtu Jan 13, 2023
e33c2f6
commit me
greathongtu Jan 18, 2023
8cc1bf1
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
8fe0488
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
8003867
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
c5bcdd2
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
ca0b088
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
6afa3f2
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
6f6893f
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
181393e
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
ab51199
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
20abb71
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
278007e
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
301ed0d
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
7233ce1
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
7b3c2dc
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
2546edf
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
599b761
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
a2c690b
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
b2a1d7d
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
bb94d2d
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
aa78cb1
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
52e38cf
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
8c8ea6a
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
e167084
Update azure-pipelines.yml for Azure Pipelines
greathongtu Jan 18, 2023
f97299b
Merge branch 'Azure:main' into main
greathongtu Jan 19, 2023
789ab64
remove test yml
Jan 19, 2023
153ec3a
Merge branch 'main' of https://github.com/xtR0d666/azure-powershell
Jan 19, 2023
f5781f0
Merge branch 'main' of https://github.com/xtR0d666/azure-powershell
Feb 7, 2023
a38d880
Merge branch 'main' of https://github.com/xtR0d666/azure-powershell
Feb 10, 2023
7d1ce51
Merge branch 'main' of https://github.com/xtR0d666/azure-powershell
Feb 10, 2023
7165280
rectify_git_url
Feb 10, 2023
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
21 changes: 9 additions & 12 deletions .azure-pipelines/sync-aliases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,17 @@ jobs:
./tools/Github/ParseWiki2Json.ps1 -ADOToken $(ADOToken)
displayName: Update fabricbot.json file locally

- task: PowerShell@2
displayName: Git commit and push
inputs:
targetType: inline
script: |
git config --global user.email "65331932+azure-powershell-bot@users.noreply.github.com"
git config --global user.name "azure-powershell-bot"
git checkout -b "internal/sync-fabricbot-json"
- pwsh: |
git config --global user.email "65331932+azure-powershell-bot@users.noreply.github.com"
git config --global user.name "azure-powershell-bot"
git checkout -b "internal/sync-fabricbot-json"

git add .
git commit -m "Sync fabricbot.json"
git add .
git commit -m "Sync fabricbot.json"

git remote set-url origin https://$(BotAccessToken)@github.com/Azure/azure-powershell.git;
git push origin internal/sync-fabricbot-json --force
git remote set-url origin https://azure-powershell-bot:$(BotAccessToken)@github.com/Azure/azure-powershell.git;
git push origin internal/sync-fabricbot-json --force
displayName: Git commit and push

- pwsh: |
$Title = "Sync fabricbot.json According To ADO Wiki Page"
Expand Down