Skip to content

[QA]: 처음 가입 할 때 정보 입력 화면 UI 개선 #88

[QA]: 처음 가입 할 때 정보 입력 화면 UI 개선

[QA]: 처음 가입 할 때 정보 입력 화면 UI 개선 #88

name: Closed Issue Notification
on:
issues:
types:
- closed
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: WAPP_BOT
DISCORD_AVATAR: https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true
DISCORD_EMBEDS: |
[
{
"title": "이슈가 닫혔습니다! 👏👏\n${{ github.event.issue.title }}",
"color": 13458524,
"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
}
]
}
]