This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## v0.10.1 (2021-04-12)
4+
5+ * Fixes a bug for brand new repos that weren't yet cloned not being able to read the harvey configuration due to bad ordering of operations
6+
37## v0.10.0 (2021-03-10)
48
59* Overhaul the ` stages ` modules, improved code readability and documentation
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ def initialize_pipeline(cls, webhook):
1919 and setting up standard logging info
2020 """
2121 start_time = datetime .now ()
22+ # Run git operation first to ensure the config is present and up-to-date
23+ git = Git .update_git_repo (webhook )
2224 config = cls .open_project_config (webhook )
2325
2426 if SLACK :
@@ -37,8 +39,6 @@ def initialize_pipeline(cls, webhook):
3739 f'\n Commit made on repo: { Global .repo_full_name (webhook )} .'
3840 )
3941
40- git = Git .update_git_repo (webhook )
41-
4242 execution_time = f'Startup execution time: { datetime .now () - start_time } \n '
4343 output = (
4444 f'{ preamble } '
Original file line number Diff line number Diff line change 1313
1414setuptools .setup (
1515 name = 'harvey-ci' ,
16- version = '0.10.0 ' ,
16+ version = '0.10.1 ' ,
1717 description = 'Your personal CI/CD and Docker orchestration platform.' ,
1818 long_description = long_description ,
1919 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments