Skip to content

Commit

Permalink
HOTFIX: Improve fetch-depth value
Browse files Browse the repository at this point in the history
  • Loading branch information
tarto-dev committed Feb 15, 2024
1 parent b6a2941 commit 6673c1b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 5

# This step creates real Sentry releases for the action itself:
# https://sentry-ecosystem.sentry.io/releases/?project=6576594
Expand Down
26 changes: 26 additions & 0 deletions typo.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/bot.py b/bot.py
index c48c1d7..4bf5749 100644
--- a/bot.py
+++ b/bot.py
@@ -242,7 +242,7 @@ async def product_cycle(
async def help(inter):
embed = Embed(title="Bot Help")
embed.add_field(
- name="/get_products", value="Gets all available products", inline=False
+ name="/get_products", value="Gets all available products.", inline=False
)
embed.add_field(
name="/product_details",
@@ -250,10 +250,10 @@ async def help(inter):
inline=False,
)
embed.add_field(
- name="/product_cycle", value="Gets details of a single cycle", inline=False
+ name="/product_cycle", value="Gets details of a single cycle.", inline=False
)
embed.add_field(
- name="/help", value="Get help information about the bot", inline=False
+ name="/help", value="Get help information about the bot.", inline=False
)
embed.set_footer(text="Use /help <command> for more details on a specific command.")
await inter.channel.send(embed=embed)

0 comments on commit 6673c1b

Please sign in to comment.