Skip to content

Commit

Permalink
Try out workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
r-b-g-b committed Jul 31, 2023
1 parent bdd3996 commit 579c22a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/first.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: First workflow

on:
push:

jobs:
mystep:
name: mystep
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
12 changes: 12 additions & 0 deletions .github/workflows/second.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on:
workflow_run:
types:
- completed
workflows: ["First workflow"]

jobs:
mystep:
name: mystep
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

0 comments on commit 579c22a

Please sign in to comment.