Skip to content

Commit

Permalink
ci(tests): Fix input for workflow_call
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Nov 1, 2024
1 parent 899d2a1 commit a50ca3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/add-ons-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Set action ref
env:
ACTION_REF: ${{ github.event.inputs.action_ref }}
ACTION_REF: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.action_ref || inputs.action_ref }}
id: set_action_call
run: |
if [ -z "${{ env.ACTION_REF }}" ]
Expand Down

0 comments on commit a50ca3f

Please sign in to comment.