Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,12 @@ extends:
jobs:
- job: Initialize
steps:
# Regeneration does not read repository history, so fetch only the
# checked-out commit. git-branch-push.ps1's retry path diffs the branch
# tip against its parent, which stays inside the depth-1 boundary.
- checkout: self
fetchDepth: 1
fetchTags: false
Comment on lines +306 to +311

- template: /eng/common/pipelines/templates/steps/login-to-github.yml
parameters:
Expand Down Expand Up @@ -399,6 +404,8 @@ extends:
emitterNpmrcPath: $(Agent.TempDirectory)/${{ parameters.EmitterPackagePath }}/.npmrc
steps:
- checkout: self
fetchDepth: 1
fetchTags: false
Comment on lines 406 to +408

- template: /eng/common/pipelines/templates/steps/login-to-github.yml
parameters:
Expand Down
Loading