Skip to content

Commit

Permalink
Test GitHub issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-g-olson committed Apr 14, 2024
1 parent d79acc1 commit cbba9c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
| GIT_BRANCH_NAME_REGEX: The regex we use to extract the ticket ID from branch
names.
"""

import os
import re
from pathlib import Path

from pydantic import BaseModel, Field
from yaml import safe_dump, safe_load
Expand Down Expand Up @@ -223,6 +224,8 @@ def run(self) -> None:
Returns:
None
"""
git_config = Path(os.environ["HOME"]).joinpath(".gitconfig")
print(git_config.read_text(), flush=True)
git_fetch(
project_root=self.docker_project_root,
local_uid=self.local_uid,
Expand Down
1 change: 0 additions & 1 deletion build_support/src/build_support/dump_ci_cd_run_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ def run_main(args: Namespace) -> None:
local_user_env=local_user_env,
ci_cd_integration_test_mode=args.ci_cd_integration_test_mode,
)
print(basic_task_info.to_yaml())
local_info_yaml = get_local_info_yaml(project_root=docker_project_root)
local_info_yaml.write_text(basic_task_info.to_yaml())

Expand Down

0 comments on commit cbba9c0

Please sign in to comment.