Skip to content

Commit

Permalink
Fix wrong arguments passed to the custom action
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Apr 7, 2024
1 parent 15f3641 commit 4a78a0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/actions/run-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ inputs:
required: true
tests:
description: 'Test Names'
required: true
runs:
using: "composite"
steps:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ jobs:
- name: Run Test
uses: ./.github/actions/run-test
with:
url: ${{ matrix.url }}
tests: ${{ matrix.test }}
url: ${{ matrix.tests.url }}
tests: ${{ matrix.tests.test }}

- name: Print Matrix
run: ${{ needs.Prepare-Tests-Matrix.outputs.test }}

0 comments on commit 4a78a0c

Please sign in to comment.