Skip to content

Commit

Permalink
github: trigger main test on push to master (#5)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
lsf37 authored Aug 27, 2021
1 parent ede9814 commit 69af531
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 69af531

Please sign in to comment.