Skip to content

Add initial mock tests examples and pipelines #1

Add initial mock tests examples and pipelines

Add initial mock tests examples and pipelines #1

Workflow file for this run

#
# Copyright (c) Microsoft Corporation
# Licensed under the MIT License.
#
name: PR Dispatch Workflow
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
dispatch:
runs-on: ubuntu-latest
strategy:
matrix:
scenario:
- standalone-scenarios-azuread.json
- standalone-scenarios.json
- standalone-compute.json
- standalone-networking.json
- standalone-scenarios-longrunners.json
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
event-type: run-scenarios
client-payload: '{"scenario": "${{ (matrix.scenario) }}"}'