Skip to content

Update DCP sample in README.md #568

Update DCP sample in README.md

Update DCP sample in README.md #568

Workflow file for this run

name: Pull Request Slack Notifier
on:
pull_request_target:
types: [opened, reopened, synchronize]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send notification to Slack
uses: slackapi/[email protected]
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL_PR }}
webhook-type: incoming-webhook
payload: |
{
"action": "${{ github.event.action }}",
"url": "${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
}