forked from ashikkumar23/github-action-with-allure-report
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
on: [push] | ||
|
||
jobs: | ||
new_push_job: | ||
runs-on: ubuntu-latest | ||
name: New push to repo | ||
steps: | ||
- name: Send GitHub trigger payload to Slack Workflow Builder | ||
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
payload: | | ||
{ | ||
"text": "Danny Torrence left a 1 star review for your property.", | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "Danny Torrence left the following review for your property:" | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"block_id": "section567", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "<https://example.com|Overlook Hotel> \\n :star: \\n Doors had too many axe holes, guest in room 237 was far too rowdy, whole place felt stuck in the 1920s." | ||
}, | ||
"accessory": { | ||
"type": "image", | ||
"image_url": "https://is5-ssl.mzstatic.com/image/thumb/Purple3/v4/d3/72/5c/d3725c8f-c642-5d69-1904-aa36e4297885/source/256x256bb.jpg", | ||
"alt_text": "Haunted hotel image" | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"block_id": "section789", | ||
"fields": [ | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Average Rating*\\n1.0" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK |