Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/pr-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Send notifications on PR

on:
pull_request:
types:
- opened
- reopened
branches:
- main
- dev

jobs:
send-discord-notification:
runs-on: ubuntu-latest
steps:
- name: Send Discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_FE }}
uses: Ilshidur/action-discord@ad5235de713df3ef38022185499b02ffe93b7efe
with:
args: |-
<@&1399317380735434775>
`[${{ github.event.pull_request.base.ref }} -> ${{ github.event.pull_request.head.ref }}] PR이 생성되었습니다.
생성자: ${{ github.event.pull_request.user.name }}

${{ github.event.pull_request.html_url }}