summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonatan KÅ‚osko <jonatanklosko@gmail.com>2022-01-08 16:14:54 +0100
committerGitHub <noreply@github.com>2022-01-08 16:14:54 +0100
commit0aeded4dd430c6df36e290c972547024aed1b7f7 (patch)
tree472c951dad35d79dd96bc92223ab708f8331f312
parent0774e4c3854ba2a3894ba0fb1de29defe747345d (diff)
downloadelixir-0aeded4dd430c6df36e290c972547024aed1b7f7.tar.gz
Fix syntax in notifications script (#11553)
-rw-r--r--.github/workflows/notify.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/notify.exs b/.github/workflows/notify.exs
index 6e3efe2e8..925f06b03 100644
--- a/.github/workflows/notify.exs
+++ b/.github/workflows/notify.exs
@@ -57,5 +57,5 @@ body = %{
"category" => 28
}
-resp = Req.post!("https://elixirforum.com/posts.json", {:json, body}, headers: headers))
+resp = Req.post!("https://elixirforum.com/posts.json", {:json, body}, headers: headers)
IO.puts("#{resp.status} Elixir Forum\n#{inspect(resp.body)}")