fix(login) : accessToken api 응답 data 중첩 구조 처리 및 타입 개선 #50
Workflow file for this run
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 Notification | |
| on: | |
| pull_request_target: | |
| branches: [main, develop] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| notify-discord: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Discord Notification for PR | |
| uses: Ilshidur/action-discord@master | |
| env: | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_FRONTEND_URL }} | |
| with: | |
| args: | | |
| 🔔 **Pull Request ${{ github.event.action }}** | |
| **Repository:** ${{ github.repository }} | |
| **PR Title:** ${{ github.event.pull_request.title }} | |
| **Author:** ${{ github.event.pull_request.user.login }} | |
| **Branch:** `${{ github.event.pull_request.head.ref }}` → `${{ github.event.pull_request.base.ref }}` |