From 69af5316aa39d43d38070984338b334083d2065d Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Fri, 27 Aug 2021 14:03:32 +1000 Subject: [PATCH] github: trigger main test on push to master (#5) The trigger action sends repository_dispatch events to all main test repositories of the manifests this repo is part of. Signed-off-by: Gerwin Klein --- .github/workflows/trigger.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/trigger.yml diff --git a/.github/workflows/trigger.yml b/.github/workflows/trigger.yml new file mode 100644 index 0000000..8410b7e --- /dev/null +++ b/.github/workflows/trigger.yml @@ -0,0 +1,19 @@ +# Copyright 2021, Proofcraft Pty Ltd +# +# SPDX-License-Identifier: BSD-2-Clause + +# Trigger repository dispatch on main test repos +name: Trigger + +on: + push: + branches: [master] + +jobs: + trigger: + name: Repository Dispatch + runs-on: ubuntu-latest + steps: + - uses: seL4/ci-actions/trigger@master + with: + token: ${{ secrets.PRIV_REPO_TOKEN }}