[FEAT] 관리자 페이지 contest 계정 생성 기능 추가 #180
This file contains hidden or 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 Notify - Ready for Review | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| jobs: | |
| notify: | |
| if: github.event.label.name == 'ready-for-review' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Discord notification | |
| env: | |
| DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
| run: | | |
| MSG="🚨 **PR 리뷰 요청!**\n\n**#${{ github.event.pull_request.number }} ${{ github.event.pull_request.title }}**\n${{ github.event.pull_request.html_url }}\n작성자: ${{ github.event.pull_request.user.login }}" | |
| curl -sS -X POST \ | |
| -H "Content-Type: application/json" \ | |
| -d "{\"content\":\"$MSG\"}" \ | |
| "$DISCORD_WEBHOOK_URL" |