From 46fe7ccef8dbda3321de396fd51cf48e31fe1064 Mon Sep 17 00:00:00 2001 From: robpitcher Date: Wed, 14 Jan 2026 21:20:11 -0500 Subject: [PATCH] add copilot-setup-steps.yml --- .github/workflows/copilot-setup-steps.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/copilot-setup-steps.yml diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml new file mode 100644 index 0000000..0095e14 --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yml @@ -0,0 +1,21 @@ +on: + workflow_dispatch: +permissions: + id-token: write + contents: read +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + permissions: + id-token: write + contents: read + environment: copilot + steps: + - name: Install azd + uses: Azure/setup-azd@v2 + - name: Azure login + uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 + with: + client-id: ${{ vars.AZURE_CLIENT_ID }} + tenant-id: ${{ vars.AZURE_TENANT_ID }} + subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }}