Skip to content

Commit

Permalink
CI: tweak: reference reusable workflow locally
Browse files Browse the repository at this point in the history
this allows non-main branches to run their own latest workflows, and
helps with forks too
  • Loading branch information
marcospb19 committed Nov 17, 2024
1 parent 2690580 commit 17499d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all-tests-slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
run-tests-for-all-combinations:
uses: ouch-org/ouch/.github/workflows/build-artifacts-and-run-tests.yml@main
uses: ./.github/workflows/build-artifacts-and-run-tests.yml
with:
matrix_all_combinations: true
upload_artifacts: false
2 changes: 1 addition & 1 deletion .github/workflows/draft-release-automatic-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
call-workflow-build-artifacts-and-run-tests:
uses: ouch-org/ouch/.github/workflows/build-artifacts-and-run-tests.yml@main
uses: ./.github/workflows/build-artifacts-and-run-tests.yml
with:
matrix_all_combinations: true
upload_artifacts: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cargo +stable clippy -- -D warnings
build-and-test:
uses: ouch-org/ouch/.github/workflows/build-artifacts-and-run-tests.yml@main
uses: ./.github/workflows/build-artifacts-and-run-tests.yml
with:
matrix_all_combinations: false
upload_artifacts: false

0 comments on commit 17499d7

Please sign in to comment.