From e0568c35f0e4cc8011204e1cfefceb3ff088fe09 Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Sat, 6 Feb 2021 12:47:52 -0800 Subject: [PATCH] [CI] Added Github Actions (#59) --- .github/workflows/run-pipeline.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/run-pipeline.yaml diff --git a/.github/workflows/run-pipeline.yaml b/.github/workflows/run-pipeline.yaml new file mode 100644 index 000000000..84ff3730c --- /dev/null +++ b/.github/workflows/run-pipeline.yaml @@ -0,0 +1,23 @@ +name: CI + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + branches: [ master ] + # Triggers the workflow on pull request events Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + name: Call Azure Pipeline + #runs-on: ubuntu-latest + steps: + - name: Azure Pipelines Action + uses: Azure/pipelines@v1 + with: + azure-devops-project-url: https://dev.azure.com/phil0342 + azure-pipeline-name: 'ptillet.triton' + azure-devops-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} \ No newline at end of file