This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
Updated Azure Identity from 1.5.0 to 1.10.4 (#1163) #385
This file contains 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
name: Sync QDK repos | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-repos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to Azure | |
uses: Azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- id: AzureKeyVault | |
uses: Azure/get-keyvault-secrets@v1 | |
with: | |
keyvault: 'kv-qdk-build' | |
secrets: 'qdkBuildPAT' | |
- name: 'Trigger QDK sync build' | |
uses: Azure/pipelines@releases/v1 | |
with: | |
azure-devops-project-url: 'https://dev.azure.com/ms-quantum-public/Microsoft Quantum (public)' | |
azure-pipeline-name: 'microsoft.qdk.sync' | |
azure-devops-token: ${{ steps.AzureKeyVault.outputs.qdkBuildPAT }} |