From 219cfe1088bfdd93eaf8c717e2d403d3adee9b3a Mon Sep 17 00:00:00 2001 From: Karishma Chawla Date: Thu, 3 Oct 2024 10:28:31 -0700 Subject: [PATCH] Add workflow to sync GitHub issues to DevOps (#52) Signed-off-by: karishma-chawla <74574173+karishma-chawla@users.noreply.github.com> Co-authored-by: karishma-chawla <74574173+karishma-chawla@users.noreply.github.com> --- .github/workflows/devops-boards.yaml | 49 ++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/devops-boards.yaml diff --git a/.github/workflows/devops-boards.yaml b/.github/workflows/devops-boards.yaml new file mode 100644 index 0000000..e4a5b68 --- /dev/null +++ b/.github/workflows/devops-boards.yaml @@ -0,0 +1,49 @@ +name: Sync issue to Azure DevOps work item + +on: + issues: + types: + [opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned] + +concurrency: + group: issue-${{ github.event.issue.number }} + cancel-in-progress: false + +# Extra permissions needed to login with Entra ID service principal via federated identity +permissions: + id-token: write + issues: write + +jobs: + ado: + runs-on: ubuntu-latest + environment: + name: issues + steps: + # Auth using Azure Service Principals was added as a part of v2.3 + # reference: https://github.com/danhellem/github-actions-issue-to-work-item/pull/143 + - 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 + echo "ADO_TOKEN=$(az account get-access-token --resource 499b84ac-1321-427f-aa17-267ca6975798 --query "accessToken" --output tsv)" >> $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'