Skip to content

Commit 849a7c3

Browse files
committed
Merge branch 'main' of github.com:algora-io/console into feat/exclusive-bounties
2 parents 70a2b0f + 4f0cc0b commit 849a7c3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/algora/bounties/jobs/notify_bounty.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ defmodule Algora.Bounties.Jobs.NotifyBounty do
1717

1818
def perform(%Oban.Job{
1919
args: %{
20+
"bounty_id" => bounty_id,
2021
"owner_login" => owner_login,
2122
"amount" => amount,
2223
"ticket_ref" => ticket_ref,
@@ -32,7 +33,7 @@ defmodule Algora.Bounties.Jobs.NotifyBounty do
3233
}
3334

3435
body = """
35-
💎 **#{owner_login}** is offering a **#{amount}** bounty for this issue
36+
💎 **#{owner_login}** is offering a **#{amount}** bounty for this issue, View and reward the bounty at #{AlgoraWeb.Endpoint.host()}/bounties/#{bounty_id}
3637
3738
👉 Got a pull request resolving this? Claim the bounty by commenting `/claim ##{ticket_ref.number}` in your PR and joining #{AlgoraWeb.Endpoint.host()}
3839
"""

lib/algora_web/live/home_live.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ defmodule AlgoraWeb.HomeLive do
943943
>
944944
<div class="grid grid-cols-1 xl:grid-cols-2 gap-y-4 sm:gap-y-6 gap-x-3">
945945
<.input
946-
label="GitHub Username"
946+
label="GitHub handle"
947947
field={@tip_form[:github_handle]}
948948
placeholder="jsmith"
949949
/>

0 commit comments

Comments
 (0)