Skip to content

Commit

Permalink
Merge pull request #18 from jflo/workflowstest
Browse files Browse the repository at this point in the history
testing chained workflows
  • Loading branch information
jflo authored Dec 5, 2023
2 parents c2d1b7d + a20755d commit 07b4e3e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/callee.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: callee

on:
workflow_run:
workflows: [ "caller" ]
types: [ "requested" ]
workflow_dispatch:

jobs:
echo:
runs-on: ubuntu-22.04
steps:
- run: echo called
8 changes: 8 additions & 0 deletions .github/workflows/caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: caller
on: pull_request

jobs:
echo:
runs-on: ubuntu-22.04
steps:
- run: echo calling

0 comments on commit 07b4e3e

Please sign in to comment.