Skip to content

Commit

Permalink
Put parentheses in run-name expression
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Jul 29, 2024
1 parent e931450 commit a6366b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Integration Tests

run-name: "${{ contains(github.event_name, 'workflow_') && inputs.name || github.event_name }}: ${{ contains(github.event_name, 'workflow_') && inputs.adapter_branch || github.ref_name }} by @${{ github.actor }}"
run-name: "${{ (contains(github.event_name, 'workflow_') && inputs.name) || github.event_name }}: ${{ (contains(github.event_name, 'workflow_') && inputs.adapter_branch) || github.ref_name }} by @${{ github.actor }}"

on:
push:
Expand Down

0 comments on commit a6366b8

Please sign in to comment.