We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da0857 commit bdc139eCopy full SHA for bdc139e
zulip/integrations/git/zulip_git_config.py
@@ -24,7 +24,7 @@
24
# * topic "main"
25
# And similarly for branch "test-post-receive" (for use when testing).
26
def commit_notice_destination(repo: str, branch: str, commit: str) -> Optional[Dict[str, str]]:
27
- if branch in ["main", "test-post-receive"]:
+ if branch in ["main", "master", "test-post-receive"]:
28
return dict(stream=STREAM_NAME, subject=f"{branch}")
29
30
# Return None for cases where you don't want a notice sent
0 commit comments