-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: shirady <[email protected]>
- Loading branch information
Showing
1 changed file
with
25 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 |
---|---|---|
|
@@ -25,3 +25,28 @@ jobs: | |
set -x | ||
cd ./noobaa-core | ||
make test-aws-sdk-clients | ||
# this should be removed | ||
- name: Test slack webhook | ||
uses: slackapi/[email protected] | ||
with: | ||
webhook: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
webhook-type: incoming-webhook | ||
payload: | | ||
text: "Hello world (Shira is testing webhook)" | ||
# this should be added | ||
# later we would add the if: ${{ failure() }} condition | ||
# - name: Post a message in a channel | ||
# uses: slackapi/[email protected] | ||
# with: | ||
# webhook: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
# webhook-type: incoming-webhook | ||
# payload: | | ||
# text: "*GitHub Action Test AWS SDK Clients Result*: ${{ job.status }}\n" | ||
# blocks: | ||
# - type: "section" | ||
# text: | ||
# type: "mrkdwn" | ||
# text: "GitHub Action build result: ${{ job.status }}\n" | ||
|