Skip to content

Commit

Permalink
fix logic for run-name
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Dec 9, 2024
1 parent f1ff462 commit c37b5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Testing
run-name: ${{ (github.event_name == 'workflow_dispatch' && github.event.inputs.repository || 'Manual Trigger Testing') || (github.event_name == 'pull_request' && github.event.pull_request.title) || (github.event_name == 'push' && github.event.head_commit.message) || github.workflow }}
run-name: ${{ (github.event_name == 'workflow_dispatch' && (github.event.inputs.repository || 'Manual Trigger Testing')) || (github.event_name == 'pull_request' && github.event.pull_request.title) || (github.event_name == 'push' && github.event.head_commit.message) || github.workflow }}
on:

push:
Expand Down

0 comments on commit c37b5d3

Please sign in to comment.