Skip to content

Robert C. Martin, super well-known guru for software engineering and agile manifesto. #4

Robert C. Martin, super well-known guru for software engineering and agile manifesto.

Robert C. Martin, super well-known guru for software engineering and agile manifesto. #4

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
env:
DISCORD_WEBHOOK: $ {{ secrets.GDSC_CAU_DISCORD_ARTICLES }}
DISCORD_EMBEDS: '[{ "author": { "name": "${{ github.event.pull_request.user.login }}" }, "title": "${{ github.event.pull_request.title }}", "description": "${{ github.event.pull_request.body }}", "color": "${{ vars.DISCORD_EMBED_COLOR }}" }]'
uses: Ilshidur/[email protected]
with:
args: "New readings are updated!"