File tree 1 file changed +23
-1
lines changed
1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 49
49
avhresult : ${{ steps.avh.conclusion }}
50
50
testbadge : ${{ steps.avh.outputs.badge }}
51
51
steps :
52
- - name : Check out repository code
52
+ - name : Download workflow artifact
53
+ uses : dawidd6/action-download-artifact@v2
54
+ with :
55
+ github_token : ${{ secrets.GITHUB_TOKEN }}
56
+ workflow : caller-corevalidation.yml
57
+ run_id : ${{ github.event.workflow_run.id }}
58
+
59
+ - name : Read the pr_num file
60
+ id : pr_num_reader
61
+ uses :
juliangruber/[email protected]
62
+ with :
63
+ path : ./pr_number/pr_number
64
+ trim : true
65
+
66
+ - name : Clone this repo
53
67
uses : actions/checkout@v3
68
+ with :
69
+ fetch-depth : 0
70
+
71
+ - name : Checkout PR
72
+ env :
73
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
74
+ run : |
75
+ gh pr checkout ${{ steps.pr_num_reader.outputs.content }}
54
76
55
77
- name : Set up Python 3.10
56
78
uses : actions/setup-python@v4
You can’t perform that action at this time.
0 commit comments