Skip to content

Update Documentation #4

Update Documentation

Update Documentation #4

Workflow file for this run

name: Notify Maintainer
on:
pull_request:
types: [opened, reopened]
branches:
- main
jobs:
notify:
name: Send Slack Notification
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Send GitHub Action trigger data to Slack workflow
id: slack
uses: slackapi/[email protected]
with:
payload: |
{
"repoName": "${{ github.repository }}",
"prNumber": "${{ github.event.pull_request.number }}",
"requester ": "${{ github.actor }}",
"link": "${{ github.server_url }}/${{ github.repository }}/pull/${{ github.event.pull_request.number }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}