Skip to content

fix: remove timeout from Invoke Config (v2 breaking change) #99

fix: remove timeout from Invoke Config (v2 breaking change)

fix: remove timeout from Invoke Config (v2 breaking change) #99

Workflow file for this run

name: Notify Slack - Pull Requests
on:
pull_request_target:
types: [opened, reopened, ready_for_review]
permissions: {}
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send pull request notification to Slack
if: github.event.pull_request.draft == false
uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL_PR }}
webhook-type: incoming-webhook
payload: |
{
"action": "${{ github.event.action }}",
"pr_url": "${{ github.event.pull_request.html_url }}",
"package_name": "${{ github.repository }}"
}