-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from move4mobile/develop
Next release
- Loading branch information
Showing
6 changed files
with
3,585 additions
and
1,298 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,29 @@ | ||
name: Slack Notification Verify | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
notify_test: | ||
name: Slack Notify | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Slack Notification | ||
uses: rtCamp/action-slack-notify@master | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_CHANNEL: geekbites | ||
SLACK_USERNAME: 'M4M Bot' | ||
SLACK_ICON: 'https://github.com/move4mobile.png?size=48' | ||
SLACK_TITLE: 'Geekbites nightly' | ||
SLACK_MESSAGE: 'Slack notifications are working :tada:' | ||
SLACK_FOOTER: ':robot_face:' | ||
MSG_MINIMAL: true | ||
# Docs / info | ||
# Used actions: | ||
# - https://github.com/marketplace/actions/slack-notify |
Oops, something went wrong.