diff --git a/README.md b/README.md
index 914c7d5..fb9cc0b 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,7 @@
**Required** Message to send to the Bot
## Outputs
+
JSON response from the Bot
## Example usage
diff --git a/badges/coverage.svg b/badges/coverage.svg
index 2ec536a..455b033 100644
--- a/badges/coverage.svg
+++ b/badges/coverage.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/dist/index.js b/dist/index.js
index 2191317..f150782 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -24737,6 +24737,8 @@ async function run() {
})
const response = await httpClient.postJson(tribe_url, req_params)
+ core.debug(`Response: ${response.result.json}`)
+
// Set outputs for other workflow steps to use
core.setOutput('message', response.result.json.message)
core.setOutput('success', response.result.json.success)
diff --git a/src/main.js b/src/main.js
index f70e00f..0457262 100644
--- a/src/main.js
+++ b/src/main.js
@@ -30,6 +30,8 @@ async function run() {
})
const response = await httpClient.postJson(tribe_url, req_params)
+ core.debug(`Response: ${response.result.json}`)
+
// Set outputs for other workflow steps to use
core.setOutput('message', response.result.json.message)
core.setOutput('success', response.result.json.success)