MOD-1365: Fixed problem with styles and modules in webpack (#107) #187
Workflow file for this run
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
# .github/workflows/notify_slack_action.yml | |
on: | |
# Trigger the workflow on all push and pull request events | |
push: | |
pull_request: | |
jobs: | |
notify_slack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ravsamhq/notify-slack-action@v2 | |
if: always() | |
with: | |
status: ${{ job.status }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
notification_title: "{workflow} has {status_message}" | |
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}>" | |
footer: "Linked Repo <{repo_url}|{repo}> | <{workflow_url}|View Workflow>" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.ENGINEERING_NOTIFICATION_SLACK_HOOK }} |