Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Oct 24, 2023
1 parent 8ff0c29 commit c4ddb57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev149"
version = "0.0.0.dev150"
name = "RepoDynamics"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
1 change: 1 addition & 0 deletions src/repodynamics/actions/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ def event_push_tag_modified(self):
return

def event_pull_request(self):
self.event_type = EventType.PULL_MAIN
branch = self.resolve_branch(self.pull_head_ref_name)
if branch.type == BranchType.DEV and branch.number == 0:
return
Expand Down
2 changes: 1 addition & 1 deletion src/repodynamics/meta/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def sort_key(val):
maintainers.items(), key=sort_key, reverse=True
)
]
self._logger.success(f"Set 'maintainers': {json.dumps(maintainers_list)}")
self._logger.success("Set 'maintainers'", json.dumps(maintainers_list, indent=3))
return maintainers_list

def _discussions(self) -> list[dict] | None:
Expand Down

0 comments on commit c4ddb57

Please sign in to comment.