Created
May 18, 2025 08:17
-
-
Save operatorequals/16864f51c215a0a9628f934b0740095a to your computer and use it in GitHub Desktop.
This is used to test AppRise Slack Templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "blocks": [ | |
| { | |
| "type": "section", | |
| "text": { | |
| "type": "mrkdwn", | |
| "text": "Hey there 👋: {{ app_desc }}." | |
| } | |
| }, | |
| { | |
| "type": "section", | |
| "text": { | |
| "type": "mrkdwn", | |
| "text": "{{ app_body }}" | |
| } | |
| }, | |
| { | |
| "type": "actions", | |
| "elements": [ | |
| { | |
| "type": "button", | |
| "text": { | |
| "type": "plain_text", | |
| "emoji": true, | |
| "text": "{{ app_id }}" | |
| }, | |
| "style": "primary", | |
| "value": "click_me_123" | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment