Skip to content

Discord Webhook Guide by birdie0 #2

Discord Webhook Guide by birdie0

Discord Webhook Guide by birdie0 #2

name: Push To Discord Channel on Pull Request Closed
on:
pull_request_target:
types:
- closed
branches:
- main
jobs:
push-to-discord:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Post Discord
uses: fjogeleit/[email protected]
with:
url: $ {{ secrets.GDSC_CAU_DISCORD_ARTICLES }}
method: "POST"
data: '{ "embeds": [{ "author": { "name": "${{ github.event.pull_request.user.name }}" }, "title": "${{ github.event.pull_request.title }}", "description": "${{ github.event.pull_request.body }}", "color": "6393081" }] }'