File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
if : github.event.workflow_run.conclusion == 'success'
11
11
steps :
12
+ - name : Create artifacts directory
13
+ run : mkdir -p ${{ runner.temp }}/artifacts
12
14
- name : Download PR number artifact
13
15
if : github.event.workflow_run.event == 'pull_request'
14
16
uses : dawidd6/action-download-artifact@v6
15
17
with :
16
18
workflow : Build
17
19
run_id : ${{ github.event.workflow_run.id }}
20
+ path : ${{ runner.temp }}/artifacts
18
21
name : PR_NUMBER
19
22
- name : Read PR_NUMBER.txt
20
23
if : github.event.workflow_run.event == 'pull_request'
21
24
id : pr_number
22
25
uses : juliangruber/read-file-action@v1
23
26
with :
24
- path : . /PR_NUMBER.txt
27
+ path : ${{ runner.temp }}/artifacts /PR_NUMBER.txt
25
28
- name : Request GitHub API for PR data
26
29
if : github.event.workflow_run.event == 'pull_request'
27
30
You can’t perform that action at this time.
0 commit comments