Skip to content

Update changelog and consume latest MP version #241

Update changelog and consume latest MP version

Update changelog and consume latest MP version #241

name: Comment Slack Notifier
on:
issue_comment:
types: [created, edited]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send notification to Slack
uses: slackapi/[email protected]
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE_COMMENT }}
webhook-type: incoming-webhook
payload: |
{
"action": "${{ github.event.action }}",
"comment_url": "${{ github.event.comment.html_url }}",
"content": ${{ toJSON(github.event.comment.body) }}
}