mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
29 lines
1.3 KiB
YAML
29 lines
1.3 KiB
YAML
name: 'Util: Notify PR Status'
|
|
|
|
on:
|
|
pull_request_review:
|
|
types: [submitted, dismissed]
|
|
pull_request:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
if: >-
|
|
(github.event_name == 'pull_request_review' && github.event.review.state == 'approved') ||
|
|
(github.event_name == 'pull_request_review' && github.event.review.state == 'dismissed') ||
|
|
(github.event_name == 'pull_request' && github.event.pull_request.merged == true) ||
|
|
(github.event_name == 'pull_request' && github.event.pull_request.merged == false && github.event.action == 'closed')
|
|
env:
|
|
NOTIFY_URL: ${{ secrets.N8N_NOTIFY_PR_STATUS_CHANGED_URL }}
|
|
steps:
|
|
- uses: fjogeleit/http-request-action@551353b829c3646756b2ec2b3694f819d7957495 # v2.0.0
|
|
if: ${{ env.NOTIFY_URL != '' && !contains(github.event.pull_request.labels.*.name, 'community') }}
|
|
name: Notify
|
|
env:
|
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
with:
|
|
url: ${{ secrets.N8N_NOTIFY_PR_STATUS_CHANGED_URL }}
|
|
method: 'POST'
|
|
customHeaders: '{ "x-api-token": "${{ secrets.N8N_NOTIFY_PR_STATUS_CHANGED_TOKEN }}" }'
|
|
data: '{ "event_name": "${{ github.event_name }}", "pr_url": "${{ env.PR_URL }}", "event": ${{ toJSON(github.event) }} }'
|