Skip to content

Commit ee44b85

Browse files
authored
Simplify submit-trace action and adjust it to new artifact upload (#17589)
1 parent f973ee6 commit ee44b85

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/submit-traces.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Submit traces
22

33
on:
44
workflow_call:
5-
inputs:
6-
artifact-name:
7-
required: false
8-
default: "traces"
9-
type: string
105

116
defaults:
127
run:
@@ -34,7 +29,7 @@ jobs:
3429
- uses: actions/download-artifact@v4
3530
id: download
3631
with:
37-
name: "${{ inputs.artifact-name }}"
32+
pattern: "traces-*"
3833
path: captured-traces
3934
continue-on-error: true
4035

0 commit comments

Comments
 (0)