We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d58d86 commit a947b24Copy full SHA for a947b24
bot.py
@@ -374,9 +374,11 @@ async def update(self, ctx):
374
message = data['commit']['message']
375
html_url = data["html_url"]
376
short_sha = data['sha'][:6]
377
- em.add_field(name='Merge Commit', value=f'[`{short_sha}`]({html_url}) {message} - [`{user.username}`]({user.url})')
+ em.add_field(name='Merge Commit', value=f'[`{short_sha}`]({html_url}) {message} - {user.username}')
378
else:
379
em.description = 'Already up to date with master repository.'
380
+
381
+ em.add_field(name='Latest Commit', value=await self.get_latest_updates(limit=1), inline=False)
382
383
await ctx.send(embed=em)
384
0 commit comments