From 6164c356c0d1a908f47b1daf9902799a656313dd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:10:20 +0000 Subject: [PATCH 1/2] Initial plan From 84642f84231ac0ebcee8350dfa862a0c3f1176db Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:13:42 +0000 Subject: [PATCH 2/2] Add Azure Pipelines workflow integration Co-authored-by: boss361 <240817972+boss361@users.noreply.github.com> --- .github/workflows/azure-pipelines.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/azure-pipelines.yml diff --git a/.github/workflows/azure-pipelines.yml b/.github/workflows/azure-pipelines.yml new file mode 100644 index 00000000..254821b4 --- /dev/null +++ b/.github/workflows/azure-pipelines.yml @@ -0,0 +1,23 @@ +name: Azure Pipelines Integration + +on: + push: + branches: + - main + pull_request: + branches: + - main + +permissions: + contents: read + +jobs: + trigger-azure-pipeline: + runs-on: ubuntu-latest + steps: + - name: Azure Pipelines Action + uses: Azure/pipelines@v1.2 + with: + azure-devops-project-url: ${{ secrets.AZURE_DEVOPS_PROJECT_URL }} + azure-pipeline-name: ${{ secrets.AZURE_PIPELINE_NAME }} + azure-devops-token: ${{ secrets.AZURE_DEVOPS_TOKEN }}