Skip to content

Commit

Permalink
Merge pull request #1170 from Amsterdam/improvement/azure-mirror
Browse files Browse the repository at this point in the history
Added Azure mirror
  • Loading branch information
remyvdwereld authored Oct 30, 2023
2 parents 13fc489 + 0647bf6 commit 809f5cc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/mirror-to-azure-devops.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Mirror to Azure DevOps

on:
push:
branches:
- master

jobs:
mirror:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Push to Azure DevOps
env:
AZURE_DEVOPS_REPO_URL_PAT: ${{ secrets.AZURE_DEVOPS_REPO_URL_PAT }}
run: |
git remote add azure-devops $AZURE_DEVOPS_REPO_URL_PAT
git push azure-devops master

0 comments on commit 809f5cc

Please sign in to comment.