We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c1c462 commit ca34ddaCopy full SHA for ca34dda
.github/workflows/syncAdo.yml
@@ -4,6 +4,10 @@ on:
4
issues:
5
types: [labeled, closed, reopened]
6
7
+permissions:
8
+ id-token: write
9
+ contents: read
10
+
11
jobs:
12
alert:
13
runs-on: ubuntu-latest
@@ -20,3 +24,15 @@ jobs:
20
24
ado_area_path: 'Edge\Web Experience\WebView2'
21
25
ado_tags: 'WV2_GitHub'
22
26
ado_gh_closed_tag: 'WV2_GitHub_Closed'
27
+ - name: Azure login
28
+ uses: azure/login@v2
29
+ with:
30
+ client-id: ${{ secrets.AZURE_CLIENT_ID }}
31
+ tenant-id: ${{ secrets.AZURE_TENANT_ID }}
32
+ subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
33
+ - name: Azure CLI script
34
+ uses: azure/cli@v2
35
36
+ azcliversion: latest
37
+ inlineScript: |
38
+ az account show
0 commit comments