diff mbox series

ty: Allow a custom name/from when sending thanks

Message ID 20230310060133.1610255-1-mpe@ellerman.id.au (mailing list archive)
State Accepted
Headers show
Series ty: Allow a custom name/from when sending thanks | expand

Commit Message

Michael Ellerman March 10, 2023, 6:01 a.m. UTC
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(-)

Comments

Konstantin Ryabitsev March 10, 2023, 8:11 p.m. UTC | #1
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,
diff mbox series

Patch

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.