From 296269991c8da8f0c33f64d3208111a1916d8755 Mon Sep 17 00:00:00 2001 From: emad-salah Date: Sun, 19 Jul 2020 12:58:09 +0100 Subject: [PATCH] GitHub Actions setup for dispatching Wizard builds --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..163b5e8a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: Update Wizard + +on: + push: + branches: [ 'feature/synchronized-wizard-builds' ] + pull_request: + branches: [ 'feature/synchronized-wizard-builds' ] + +jobs: + dispatch: + strategy: + matrix: + repo: ['shocknet/Wizard'] + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v1 + with: + token: ${{ secrets.REPO_ACCESS_TOKEN }} + repository: ${{ matrix.repo }} + event-type: api-update