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 @@ -116,6 +116,10 @@ jobs:
116116 contents : write
117117 steps :
118118 - uses : actions/checkout@v4
119+ with :
120+ # New lines are discovered by running a three-dot notation diff on base_ref...head. They must share a common
121+ # ancestor. Setting fetch-depth to 1000 here should ensure that.
122+ fetch-depth : 1000
119123
120124 - name : Install everything, run the tests, produce the .coverage file
121125 run : make test # This is the part where you put your own test command
@@ -205,6 +209,8 @@ jobs:
205209 contents : write
206210 steps :
207211 - uses : actions/checkout@v4
212+ with :
213+ fetch-depth : 1000
208214
209215 - name : Install everything, run the tests, produce the .coverage file
210216 run : make test # This is the part where you put your own test command
@@ -247,6 +253,8 @@ jobs:
247253
248254 steps:
249255 - uses: actions/checkout@v4
256+ with:
257+ fetch-depth: 1000
250258
251259 - name: Set up Python
252260 id: setup-python
@@ -284,6 +292,8 @@ jobs:
284292 contents : write
285293 steps :
286294 - uses : actions/checkout@v4
295+ with :
296+ fetch-depth : 1000
287297
288298 - uses : actions/download-artifact@v4
289299 id : download
You can’t perform that action at this time.
0 commit comments