Skip to content

Commit

Permalink
feat: 💫
Browse files Browse the repository at this point in the history
  • Loading branch information
fuegovic committed Oct 30, 2023
1 parent 46b76c9 commit 3988220
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ async def claim_callback(ctx: ComponentContext):
await ctx.send(content=thank_you_message)
else:
await user.remove_role(role, reason='no_star')
await ctx.send(content="You have not starred the repo.", ephemeral=True)
await ctx.send(content="Please star the repo to get the role 🌟", ephemeral=True)
else:
await ctx.send(content="User not found.", ephemeral=True)
await ctx.send(content="Please make sure to link your GitHub account by using the **Log in with GitHub** button.", ephemeral=True)

client.start()
40 changes: 40 additions & 0 deletions bot/messages.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# pylint: disable=missing-module-docstring

# Here you can edit, add remove the messages sent by the bot when a user star or un-star the repo
THANKS = [
"<@{}>, Thank you for your support! 😊",
"We appreciate you <@{}>! 🙌",
"<@{}>, Thanks for being a part of our community! 💯",
"You rock <@{}>! Thanks for the star! 🌟",
"We're so grateful for your interest <@{}>! 🙏",
"<@{}>, You're awesome! Thank you for your feedback! 👍",
"We're glad you like our project <@{}>! 🎉",
"<@{}>, You made our day! Thanks for the star! 😘",
"<@{}>, You're amazing! 😎",
"<@{}>, Thanks for joining our community! 🥰",
"You're the best <@{}>! Thanks for the star! ✨",
"<@{}>, You're incredible! Thank you! 🙌",
"Thank you <@{}>! 💖",
"We're happy you like our project <@{}>! 😁",
"<@{}>, You brightened our day! Thanks for the star! 🌞",
"<@{}>, You're a star! Literally! Thanks for the star! 🌠",
"We love you <@{}>! Thanks for your support! 💕",
"<@{}>, You're a legend! Thank you for your interest! 🙌",
"You're awesome <@{}>! Thanks for the star! 😍",
"We're so thankful for your feedback <@{}>! 🙏",
"<@{}>, You're a gem! Thank you for your support! 💎",
"You're amazing <@{}>! Thanks for the star! 😊",
"We're grateful for your interest <@{}>! 🙌",
"<@{}>, You're a hero! Thank you for your feedback! 👏",
"You're fantastic <@{}>! Thanks for the star! 🎊",
]

SORRY = [
"<@{}>, We respect your decision. 😌",
"<@{}>, We wish you all the best. 🙏",
"<@{}>, We hope you'll come back soon. 😔",
"<@{}>, We're sorry to see you go. 😢",
"<@{}>, We're sad to lose you. 😭",
"<@{}>, We hope you'll reconsider. 😇",
"<@{}>, We're always here for you. 💖",
]

0 comments on commit 3988220

Please sign in to comment.