word lib: fix broken style introduced from AFP #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021, Proofcraft Pty Ltd | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
# Trigger docker deploy action in seL4/ci-actions on C parser changes | |
name: Trigger | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'tools/c-parser/**' | |
# for testing: | |
workflow_dispatch: | |
jobs: | |
trigger: | |
name: CParser Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.PRIV_REPO_TOKEN }} | |
repository: seL4/ci-actions | |
event-type: cparser-deploy |