Skip to content

Commit 408ab5d

Browse files
authored
Update process_perf_new.yml
1 parent 6de8670 commit 408ab5d

File tree

1 file changed

+59
-5
lines changed

1 file changed

+59
-5
lines changed

.github/workflows/process_perf_new.yml

+59-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ name: process perf results no docker custom
22
on:
33
workflow_dispatch:
44
inputs:
5-
commit_id:
6-
description: 'Commit to read results from'
7-
required: true
8-
default: '5b13c202bbf6a196104ebb440678dd22037b6746'
5+
branch:
6+
# description: 'Commit to read results from'
7+
# required: true
8+
default: 'main'
9+
#commit_id:
10+
# description: 'Commit to read results from'
11+
# required: true
12+
# default: '5b13c202bbf6a196104ebb440678dd22037b6746'
913
#push:
1014
# branches:
1115
# - test-perf
@@ -27,9 +31,59 @@ jobs:
2731
uses: meta-introspector/action-download-artifact@v6
2832
with:
2933
workflow_search: true
30-
commit: ${{ inputs.commit_id }}
34+
#commit: ${{ inputs.commit_id }}
3135
skip_unpack: true
3236
path: data
37+
#workflow: ${{ inputs.workflow }}
38+
# If no workflow is set and workflow_search set to true, then the most recent workflow matching
39+
# all other criteria will be looked up instead of using the current workflow
40+
#workflow_search: false
41+
# Optional, the status or conclusion of a completed workflow to search for
42+
# Can be one of a workflow conclusion:
43+
# "failure", "success", "neutral", "cancelled", "skipped", "timed_out", "action_required"
44+
# Or a workflow status:
45+
# "completed", "in_progress", "queued"
46+
# Use the empty string ("") to ignore status or conclusion in the search
47+
#workflow_conclusion: success
48+
# Optional, will get head commit SHA
49+
#pr: ${{github.event.pull_request.number}}
50+
# Optional, no need to specify if PR is
51+
#commit: ${{github.event.pull_request.head.sha}}
52+
# Optional, will use the specified branch. Defaults to all branches
53+
branch: ${{ inputs.branch }}
54+
# Optional, defaults to all types
55+
#event: push
56+
# Optional, will use specified workflow run
57+
# use ${{ github.event.workflow_run.id }} when your action runs in a workflow_run event
58+
# and wants to download from the triggering workflow run
59+
#run_id: 1122334455
60+
# Optional, run number from the workflow
61+
#run_number: 34
62+
# Optional, uploaded artifact name,
63+
# will download all artifacts if not specified
64+
# and extract them into respective subdirectories
65+
# https://github.com/actions/download-artifact#download-all-artifacts
66+
# is treated as a regular expression if input name_is_regexp is true
67+
# will download only those artifacts with a name that matches this regular expression
68+
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions
69+
#name: artifact_name
70+
# Optional, name is treated as a regular expression if set true
71+
#name_is_regexp: true
72+
# Optional, a directory where to extract artifact(s), defaults to the current directory
73+
#path: extract_here
74+
# Optional, defaults to current repo
75+
#repo: ${{ github.repository }}
76+
# Optional, check the workflow run to whether it has an artifact
77+
# then will get the last available artifact from the previous workflow
78+
# default false, just try to download from the last one
79+
#check_artifacts: false
80+
# Optional, search for the last workflow run whose stored an artifact named as in `name` input
81+
# default false
82+
#search_artifacts: false
83+
# Optional, choose to skip unpacking the downloaded artifact(s)
84+
# default false
85+
#skip_unpack: false
86+
3387
- name: list
3488
run: |
3589
find data

0 commit comments

Comments
 (0)