@@ -195,6 +195,12 @@ jobs:
195
195
steps :
196
196
- name : git checkout
197
197
uses : actions/checkout@v3
198
+ with :
199
+ fetch-depth : 0
200
+
201
+ - name : fetch and rebase on ${{ github.base_ref }}
202
+ if : github.event_name == 'pull_request'
203
+ uses : ./.github/actions/rebase
198
204
199
205
- name : git checkout fuzzing seeds
200
206
uses : actions/checkout@v3
@@ -261,6 +267,12 @@ jobs:
261
267
steps :
262
268
- name : git checkout
263
269
uses : actions/checkout@v3
270
+ with :
271
+ fetch-depth : 0
272
+
273
+ - name : fetch and rebase on ${{ github.base_ref }}
274
+ if : github.event_name == 'pull_request'
275
+ uses : ./.github/actions/rebase
264
276
265
277
- name : setup go ${{ env.GO_VERSION }}
266
278
uses : ./.github/actions/setup-go
@@ -306,6 +318,12 @@ jobs:
306
318
steps :
307
319
- name : git checkout
308
320
uses : actions/checkout@v3
321
+ with :
322
+ fetch-depth : 0
323
+
324
+ - name : fetch and rebase on ${{ github.base_ref }}
325
+ if : github.event_name == 'pull_request'
326
+ uses : ./.github/actions/rebase
309
327
310
328
- name : setup go ${{ env.GO_VERSION }}
311
329
uses : ./.github/actions/setup-go
@@ -344,6 +362,12 @@ jobs:
344
362
steps :
345
363
- name : git checkout
346
364
uses : actions/checkout@v3
365
+ with :
366
+ fetch-depth : 0
367
+
368
+ - name : fetch and rebase on ${{ github.base_ref }}
369
+ if : github.event_name == 'pull_request'
370
+ uses : ./.github/actions/rebase
347
371
348
372
- name : setup go ${{ env.GO_VERSION }}
349
373
uses : ./.github/actions/setup-go
0 commit comments