Skip to content

Commit

Permalink
feat: update workflow-tester73
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Falourd <[email protected]>
  • Loading branch information
GuillaumeFalourd committed Dec 1, 2022
1 parent 9ca4c80 commit e2e88a0
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions .github/workflows/workflow-tester73.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,37 @@ jobs:
steps:
- run: echo ${{ inputs.skip }}

build:
name: build
build1:
name: build1
if: ${{ inputs.skip == 'false' }}
uses: GuillaumeFalourd/poc-github-actions/.github/workflows/workflow-tester52-reusable.yml@main
with:
input_var: 'something'
another_input_var: 'something else'
secrets: inherit

build2:
name: build2
if: ${{ inputs.skip == false }}
uses: GuillaumeFalourd/poc-github-actions/.github/workflows/workflow-tester52-reusable.yml@main
with:
input_var: 'something'
another_input_var: 'something else'
secrets: inherit

build3:
name: build3
if: ${{ ! inputs.skip }}
uses: GuillaumeFalourd/poc-github-actions/.github/workflows/workflow-tester52-reusable.yml@main
with:
input_var: 'something'
another_input_var: 'something else'
secrets: inherit

build4:
name: build4
if: ${{ inputs.skip }}
uses: GuillaumeFalourd/poc-github-actions/.github/workflows/workflow-tester52-reusable.yml@main
with:
input_var: 'something'
another_input_var: 'something else'
Expand Down

0 comments on commit e2e88a0

Please sign in to comment.