๐ ๋ฌธ์ : ERD - ๋ค์ด์ด๊ทธ๋จ ์ถ๊ฐ #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Discord Notifications | |
on: | |
pull_request: # pr - opened ์ด๋ฒคํธ ๋ฐ์ ์ discord ์๋ฆผ | |
types: [opened] | |
push: # push - main ๋ธ๋์น์ push ์ด๋ฒคํธ ๋ฐ์ ์ discord ์๋ฆผ | |
branches: | |
- main | |
jobs: | |
discordNotification: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Discord Github Notification | |
uses: Aleph-Kim/discord-github-notification@v1.2.1 | |
with: | |
discord-webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} # secret key์ ์ ์ฅํ discord webhook url | |
custom: true |