mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
29 lines
1.1 KiB
YAML
29 lines
1.1 KiB
YAML
name: Discord Notify
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
check_maintainer:
|
|
uses: facebook/react/.github/workflows/shared_check_maintainer.yml@main
|
|
with:
|
|
actor: ${{ github.event.pull_request.user.login }}
|
|
is_remote: true
|
|
|
|
notify:
|
|
if: ${{ needs.check_maintainer.outputs.is_core_team == 'true' }}
|
|
needs: check_maintainer
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Discord Webhook Action
|
|
uses: tsickert/discord-webhook@v6.0.0
|
|
with:
|
|
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
embed-author-name: ${{ github.event.pull_request.user.login }}
|
|
embed-author-url: ${{ github.event.pull_request.user.html_url }}
|
|
embed-author-icon-url: ${{ github.event.pull_request.user.avatar_url }}
|
|
embed-title: '#${{ github.event.number }} (+${{github.event.pull_request.additions}} -${{github.event.pull_request.deletions}}): ${{ github.event.pull_request.title }}'
|
|
embed-description: ${{ github.event.pull_request.body }}
|
|
embed-url: ${{ github.event.pull_request.html_url }}
|