WS-459 [REFACTOR] : 쪽지 수신자 선택 / 쪽지 수정 페이지 내 레이아웃 리팩토링해요. #131
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: Opened Issue Notification | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
create-issue: | |
name: Discord notification | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Issue | |
uses: Ilshidur/[email protected] | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
DISCORD_USERNAME: BFF BOT | |
DISCORD_AVATAR: https://github.com/YAPP-Github/24th-App-Team-1-Android/assets/77484719/885117e7-5809-4630-9f37-ede855cdc8c8 | |
DISCORD_EMBEDS: | | |
[ | |
{ | |
"title": "왔어요 왔어~ 새로운 이슈가 왔어요~🥳\n${{ github.event.issue.title }}", | |
"color": 10478271, | |
"description": "${{ github.event.issue.html_url }}", | |
"fields": [ | |
{ | |
"name": "Issue Number", | |
"value": "#${{ github.event.issue.number }}", | |
"inline": true | |
}, | |
{ | |
"name": "Author", | |
"value": "${{ github.event.issue.user.login }}", | |
"inline": true | |
} | |
] | |
} | |
] |