tools.linux.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ty: Allow a custom name/from when sending thanks
@ 2023-03-10  6:01 Michael Ellerman
  2023-03-10 20:11 ` Konstantin Ryabitsev
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Ellerman @ 2023-03-10  6:01 UTC (permalink / raw)
  To: tools

Add config options "thanks-from-name" and "thanks-from-email" that
allow setting a custom name and/or from address when sending thanks.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
---
 b4/ty.py        |  8 +++++---
 docs/config.rst | 14 ++++++++++++++
 2 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/b4/ty.py b/b4/ty.py
index 15b02ed..165afd9 100644
--- a/b4/ty.py
+++ b/b4/ty.py
@@ -440,13 +440,16 @@ BRANCH_INFO = None
             os.mkdir(cmdargs.outdir)
 
     usercfg = b4.get_user_config()
+    config = b4.get_main_config()
+    user_name = config.get('thanks-from-name', usercfg['name'])
+    user_email = config.get('thanks-from-email', usercfg['email'])
     signature = b4.get_email_signature()
 
     outgoing = 0
     msgids = list()
     for jsondata in listing:
-        jsondata['myname'] = usercfg['name']
-        jsondata['myemail'] = usercfg['email']
+        jsondata['myname'] = user_name
+        jsondata['myemail'] = user_email
         jsondata['signature'] = signature
         if 'pr_commit_id' in jsondata:
             # This is a pull request
@@ -489,7 +492,6 @@ BRANCH_INFO = None
         logger.info('No thanks necessary.')
         return
 
-    config = b4.get_main_config()
     pwstate = cmdargs.pw_set_state
     if not pwstate:
         pwstate = config.get('pw-accept-state')
diff --git a/docs/config.rst b/docs/config.rst
index 389badf..c43f32d 100644
--- a/docs/config.rst
+++ b/docs/config.rst
@@ -257,6 +257,20 @@ These settings control the behaviour of ``b4 ty`` command.
 
   Default: ``None``
 
+``b4.thanks-from-name`` (v0.13+)
+  An custom from name for sending thanks, eg::
+
+      thanks-from-name = Project Foo Thanks Bot
+
+  Default: ``None`` - falls back to user name.
+
+``b4.thanks-from-email``
+  An custom from email for sending thanks, eg::
+
+      thanks-from-email = thanks-bot@foo.org
+
+  Default: ``None`` - falls back to user email.
+
 ``b4.email-exclude`` (v0.9+)
   A comma-separated list of shell-style globbing patterns with addresses
   that should always be excluded from the recipient list.
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ty: Allow a custom name/from when sending thanks
  2023-03-10  6:01 [PATCH] ty: Allow a custom name/from when sending thanks Michael Ellerman
@ 2023-03-10 20:11 ` Konstantin Ryabitsev
  0 siblings, 0 replies; 2+ messages in thread
From: Konstantin Ryabitsev @ 2023-03-10 20:11 UTC (permalink / raw)
  To: tools, Michael Ellerman


On Fri, 10 Mar 2023 17:01:33 +1100, Michael Ellerman wrote:
> Add config options "thanks-from-name" and "thanks-from-email" that
> allow setting a custom name and/or from address when sending thanks.
> 
> 

Applied, thanks!

[1/1] ty: Allow a custom name/from when sending thanks
      commit: 63fb2ff10b04b383cdc0db3f2a568209e2595222

Best regards,
-- 
Konstantin Ryabitsev <konstantin@linuxfoundation.org>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-10 20:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-10  6:01 [PATCH] ty: Allow a custom name/from when sending thanks Michael Ellerman
2023-03-10 20:11 ` Konstantin Ryabitsev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).