File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 8
8
schedule :
9
9
- cron : ' 0 0 * * 1' # Every Monday at 12:00 AM UTC, which is 10:00 AM Melbourne time (AEST)
10
10
workflow_dispatch :
11
+ inputs :
12
+ UPDATE_PULL_REQUESTS :
13
+ description : ' Create/update PR for QA/Desktop/iOS/Android'
14
+ required : true
15
+ type : boolean
16
+ default : true
11
17
12
18
concurrency :
13
19
group : ${{ github.workflow }}-${{ github.ref }}
@@ -240,6 +246,7 @@ jobs:
240
246
name : Make Android PR
241
247
needs : [jobs_sync]
242
248
runs-on : ubuntu-latest
249
+ if : ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
243
250
steps :
244
251
- name : Checkout Repo Content
245
252
uses : actions/checkout@v4
@@ -270,6 +277,7 @@ jobs:
270
277
needs : [jobs_sync]
271
278
name : Make Desktop PR
272
279
runs-on : ubuntu-latest
280
+ if : ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
273
281
steps :
274
282
- name : Checkout Repo Content
275
283
uses : actions/checkout@v4
@@ -301,6 +309,7 @@ jobs:
301
309
needs : [jobs_sync]
302
310
name : Make iOS PR
303
311
runs-on : ubuntu-latest
312
+ if : ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
304
313
steps :
305
314
- name : Checkout Repo Content
306
315
uses : actions/checkout@v4
@@ -331,6 +340,7 @@ jobs:
331
340
needs : [jobs_sync]
332
341
name : Make QA PR (Appium)
333
342
runs-on : ubuntu-latest
343
+ if : ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
334
344
steps :
335
345
- name : Checkout Repo Content
336
346
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments