File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,13 @@ name: Moodle web installation testing
2
2
3
3
on :
4
4
workflow_dispatch :
5
+ inputs :
6
+ repository :
7
+ description : ' Repository to clone'
8
+ required : true
9
+ branch :
10
+ description : ' Branch to clone'
11
+ required : true
5
12
push :
6
13
branches :
7
14
- main
52
59
ini-values : max_input_vars=5000
53
60
coverage : none
54
61
55
- - name : Clone Moodle repository
56
- run : git clone https://git.in.moodle.com/moodle/integration.git moodle
62
+ # - name: Clone Moodle repository
63
+ # run: git clone https://git.in.moodle.com/moodle/integration.git moodle
64
+ - name : Clone moodle site repository and branch
65
+ uses : actions/checkout@v4
66
+ with :
67
+ repository : ${{ github.event.inputs.repository }}
68
+ ref : ${{ github.event.inputs.branch }}
69
+ path : moodle
57
70
58
71
- name : Clone Plugin repository
59
72
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments