File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : Build clang runtime builtins
2
2
on :
3
3
workflow_dispatch :
4
+ target_sdk_branch :
5
+ type : string
6
+ required : false
7
+ default : ' master'
8
+ create_pr :
9
+ type : boolean
10
+ required : false
11
+ default : false
12
+
4
13
# TODO: remove this next line before merging!
5
14
push :
6
15
22
31
- uses : actions/checkout@v4
23
32
with :
24
33
# TODO: remove this next line before merging!
25
- ref : feat/apa/clangrt
34
+ ref : feat/regain_control_over_libs
26
35
sparse-checkout : |
27
36
tools/build_clangrt_builtins.sh
28
37
sparse-checkout-cone-mode : false
43
52
name : arch
44
53
pattern : arch-*
45
54
delete-merged : true
55
+
56
+ pr_create :
57
+ needs : merge
58
+ runs-on : ubuntu-latest
59
+ name : " Pull Request Create"
60
+ if : ${{ success() && inputs.create_pr }}
61
+ continue-on-error : true
62
+ steps :
63
+ - name : Clone repository
64
+ uses : actions/checkout@v4
65
+ with :
66
+ # by default the action uses fetch-depth = 1, which creates
67
+ # shallow repositories from which we can't push
68
+ fetch-depth : 0
69
+ ref : ${{ inputs.target_sdk_branch }}
70
+
71
+ - name : Download Binaries artifact
72
+ uses : actions/download-artifact@v4
73
+ with :
74
+ name : arch
75
+
76
+ - name : Print matrix
77
+ run : ls -l
You can’t perform that action at this time.
0 commit comments