We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9c3ec commit e21ceffCopy full SHA for e21ceff
.github/workflows/check-pebble-dep.yml
@@ -31,13 +31,14 @@ jobs:
31
if: steps.run_script.outputs.exitcode != '0'
32
uses: slackapi/[email protected]
33
with:
34
+ errors: true
35
method: chat.postMessage
36
token: ${{ secrets.PEBBLE_SLACK_BOT_TOKEN }}
37
# The channel ID is for #storage-notifications.
38
payload: |
- channel: C08JE13CM9S
39
- text: |
40
- Some Pebble dependencies are not up to date. Details below:
41
- ```
42
- ${{ steps.run_script.outputs.output }}
43
+ {
+ "channel": "C08JE13CM9S",
+ "text": ${{ toJson(format(
+ 'Some Pebble dependencies are not up to date. Details below:\n```{0}```',
+ steps.run_script.outputs.output)) }}
44
+ }
0 commit comments