[Feat/user device token] - 알림을 위한 디바이스 토큰수집 #62
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: schema-change-notification | |
| on: | |
| push: | |
| paths: | |
| - 'src/main/resources/sql/schema.sql' | |
| pull_request: | |
| paths: | |
| - 'src/main/resources/sql/schema.sql' | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Send notification | |
| uses: sarisia/actions-status-discord@v1 | |
| with: | |
| title: 📢 Schema.sql Changed 📢 | |
| webhook: ${{ secrets.DISCORD_URL }} | |
| color: 00FF00 | |
| text: '데이터 스키마가 변경되었어요. 변경된 내용을 확인해주세요.' |