Skip to content

Commit

Permalink
Revert back to PAT auth
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com>
  • Loading branch information
AaronCrawfis committed Mar 27, 2024
1 parent 09467a8 commit 859980d
Showing 1 changed file with 34 additions and 19 deletions.
53 changes: 34 additions & 19 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,9 @@ jobs:
environment:
name: issues
steps:
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ vars.AZURE_SP_DEVOPS_SYNC_CLIENT_ID }}
tenant-id: ${{ vars.AZURE_SP_DEVOPS_SYNC_TENANT_ID }}
allow-no-subscriptions: true
- name: Get Azure DevOps token
id: get_ado_token
run:
# The resource ID for Azure DevOps is always 499b84ac-1321-427f-aa17-267ca6975798
# https://learn.microsoft.com/azure/devops/integrate/get-started/authentication/service-principal-managed-identity
accessToken=$(az account get-access-token --resource 499b84ac-1321-427f-aa17-267ca6975798 --query "accessToken" --output tsv)
echo "ADO_TOKEN=$accessToken" >> $GITHUB_ENV
- name: Print length of ADO_TOKEN
run: |
echo "ADO_TOKEN length: ${#ADO_TOKEN}"
- name: Sync issue to Azure DevOps
uses: danhellem/github-actions-issue-to-work-item@v2.2
- uses: danhellem/github-actions-issue-to-work-item@v2.2
env:
ado_token: ${{ env.ADO_TOKEN }}
ado_token: "${{ secrets.ADO_AOCTO_BOT_TOKEN }}"
github_token: "${{ secrets.GH_RAD_CI_BOT_PAT }}"
ado_organization: "azure-octo"
ado_project: "Incubations"
Expand All @@ -48,3 +31,35 @@ jobs:
ado_active_state: "Active"
ado_close_state: "Closed"
ado_wit: "GitHub Issue"

###################################################################################################################
# The following code is commented out because service principal authentication is not supported in the sync tool
# This PR is tracking the work: https://github.com/danhellem/github-actions-issue-to-work-item/pull/143
# Once merged and 2.3 is released, we can uncomment the following code and remove the ado_token secret
###################################################################################################################
#- name: Login to Azure
# uses: azure/login@v2
# with:
# client-id: ${{ vars.AZURE_SP_DEVOPS_SYNC_CLIENT_ID }}
# tenant-id: ${{ vars.AZURE_SP_DEVOPS_SYNC_TENANT_ID }}
# allow-no-subscriptions: true
#- name: Get Azure DevOps token
# id: get_ado_token
# run:
# # The resource ID for Azure DevOps is always 499b84ac-1321-427f-aa17-267ca6975798
# # https://learn.microsoft.com/azure/devops/integrate/get-started/authentication/service-principal-managed-identity
# accessToken=$(az account get-access-token --resource 499b84ac-1321-427f-aa17-267ca6975798 --query "accessToken" --output tsv)
# echo "ADO_TOKEN=$accessToken" >> $GITHUB_ENV
#- name: Sync issue to Azure DevOps
# uses: danhellem/github-actions-issue-to-work-item@v2.3
# env:
# ado_token: ${{ env.ADO_TOKEN }}
# github_token: "${{ secrets.GH_RAD_CI_BOT_PAT }}"
# ado_organization: "azure-octo"
# ado_project: "Incubations"
# ado_area_path: "Incubations\\Radius"
# ado_iteration_path: "Incubations\\Radius"
# ado_new_state: "New"
# ado_active_state: "Active"
# ado_close_state: "Closed"
# ado_wit: "GitHub Issue"

0 comments on commit 859980d

Please sign in to comment.