Replies: 4 comments 9 replies
-
Hey, there's no switch for turning this off yet... I'll add a git config key. Given high amount of commercial work, I'll only have time for such small accumulated requests around late August/early September... I invite you to provide contribution if you'd like to see the switch rolled out earlier! |
Beta Was this translation helpful? Give feedback.
-
This is a great suggestion. Related to your comment on production dependencies, Pawel, at some point in the future it may be worth generating a binary for machete using something like Nuitka, that way including Jinja should be less of a pain. |
Beta Was this translation helpful? Give feedback.
-
WIP for the original request (turn off PR chain) at PR #1306 |
Beta Was this translation helpful? Give feedback.
-
I was going to open a new issue, but this discussion is relevant to my current problem I figured I would tack it on here and move it to a separate issue if deemed appropriate. As a personal preference the Intro style commenting detracts from the objective of the PR description so it creates a bit more conflict in reading through the what the PR is about from a reviewers standpoint, but I like having it available. Would you be amenable to adding a config flag to set the description insert mode? def __get_pr_description_insert_mode_from_config(self, spec: CodeHostingSpec) -> PRDescriptionInsertMode:
config_key = spec.git_config_keys.pr_description_insert_mode
return PRDescriptionInsertMode.from_string(
value=self.__git.get_config_attr(key=config_key, default_value="prepend"),
from_where=f"`{config_key}` git config key"
) The name conflict with the wording |
Beta Was this translation helpful? Give feedback.
-
From docs for
create-pr
How can I turn this off?
Beta Was this translation helpful? Give feedback.
All reactions