We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa209b commit 64f35afCopy full SHA for 64f35af
1 file changed
src/job/job.py
@@ -210,7 +210,6 @@ def get_source(self):
210
repo = self.job['repo']
211
clone_url = repo['clone_url']
212
branch = repo.get('branch', None)
213
- full_history = repo.get('full_history', False)
214
ref = repo.get('ref', None)
215
216
definition = self.job['definition']
@@ -221,6 +220,7 @@ def get_source(self):
221
220
def_repo = definition.get('repository', {})
222
repo_clone = def_repo.get('clone', True)
223
repo_submodules = def_repo.get('submodules', True)
+ full_history = def_repo.get('full_history', False)
224
225
commit = repo['commit']
226
0 commit comments