Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-ban committed Oct 31, 2023
1 parent 4359715 commit 7624499
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/nested-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Nested Reusable workflow

on:
workflow_call:

env:
IMAGE_NAME: ${{ github.repository }}

jobs:
echo:
runs-on: ubuntu-latest
steps:
- name: Test
run: |
echo NESTED
15 changes: 15 additions & 0 deletions .github/workflows/reusable-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Reusable workflow

on:
workflow_call:

jobs:
echo:
runs-on: ubuntu-latest
steps:
- name: Test
run: |
echo "reusable workflow"
call-another-reusable:
uses: ./.github/workflows/nested-workflow.yml

0 comments on commit 7624499

Please sign in to comment.