Skip to content

Commit

Permalink
[squashme] Use relative path for workflow reference
Browse files Browse the repository at this point in the history
  • Loading branch information
fernflower committed Jun 6, 2022
1 parent f814e64 commit 5a62ee1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tmt-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ on:

jobs:
call_workflow_copr_build:
uses: fernflower/leapp/.github/workflows/reuse-copr-build.yml@master
uses: ./.github/workflows/reuse-copr-build.yml
secrets: inherit

call_workflow_tests_7to8_integration:
needs: call_workflow_copr_build
uses: fernflower/leapp/.github/workflows/reuse-tests-7to8.yml@master
uses: ./.github/workflows/reuse-tests-7to8.yml
secrets: inherit
with:
copr_artifacts: ${{ needs.call_workflow_copr_build.outputs.artifacts }}
tmt_plan_regex: "^(?!.*c2r)(?!.*sap)(?!.*8to9)(?!.*morf)"

call_workflow_tests_7to8_sst:
needs: call_workflow_copr_build
uses: fernflower/leapp/.github/workflows/reuse-tests-7to8.yml@master
uses: ./.github/workflows/reuse-tests-7to8.yml
secrets: inherit
with:
copr_artifacts: ${{ needs.call_workflow_copr_build.outputs.artifacts }}
Expand All @@ -34,7 +34,7 @@ jobs:
call_workflow_tests_7to8_aws:
needs: call_workflow_copr_build
uses: fernflower/leapp/.github/workflows/reuse-tests-7to8.yml@master
uses: ./.github/workflows/reuse-tests-7to8.yml
secrets: inherit
with:
copr_artifacts: ${{ needs.call_workflow_copr_build.outputs.artifacts }}
Expand All @@ -46,15 +46,15 @@ jobs:

call_workflow_tests_8to9_integration:
needs: call_workflow_copr_build
uses: fernflower/leapp/.github/workflows/reuse-tests-8to9.yml@master
uses: ./.github/workflows/reuse-tests-8to9.yml
secrets: inherit
with:
copr_artifacts: ${{ needs.call_workflow_copr_build.outputs.artifacts }}
tmt_plan_regex: "^(?!.*c2r)(?!.*sap)(?!.*7to8)(?!.*morf)"

call_workflow_tests_8to9_sst:
needs: call_workflow_copr_build
uses: fernflower/leapp/.github/workflows/reuse-tests-8to9.yml@master
uses: ./.github/workflows/reuse-tests-8to9.yml
secrets: inherit
with:
copr_artifacts: ${{ needs.call_workflow_copr_build.outputs.artifacts }}
Expand Down

0 comments on commit 5a62ee1

Please sign in to comment.