Skip to content

Fixes Missing Schema Configuration #5

Fixes Missing Schema Configuration

Fixes Missing Schema Configuration #5

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/slack-github-action@v1.27.0
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 }}