mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 12:20:12 +01:00
19 lines
275 B
YAML
19 lines
275 B
YAML
|
name: Workflow Test
|
||
|
|
||
|
on:
|
||
|
workflow_run:
|
||
|
workflows: ["Jekyll build"]
|
||
|
branches: ["master"]
|
||
|
types:
|
||
|
- completed
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Hello world
|
||
|
run: echo "Hello world"
|