Skip to content

Commit

Permalink
Added Github Action Workflow to Sync with Azure DevOps mirror repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlaaTrAce authored Sep 9, 2024
1 parent 26275ef commit caad168
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync to Azure DevOps

on:
push:
branches:
- main # or any branch you want to track

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repository
uses: actions/checkout@v3

- name: Push to Azure DevOps
run: |
git remote add azure https://$(ADO_PAT):$(ADO_PAT)@dev.azure.com/iceteagroup/Wisej.NET%20DemoBrowser/_git/wisej-demobrowser
git push azure main
env:
AZURE_PAT: ${{ secrets.ADO_PAT }} # Store Azure DevOps Personal Access Token (PAT) in GitHub Secrets
AZURE_USERNAME: ${{ secrets.ADO_USERNAME }} # Store Azure DevOps Personal Access Token (PAT) in GitHub Secrets

0 comments on commit caad168

Please sign in to comment.