[feat] 테스트를 위한 로그인 엔드포인트 추가 #63
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: slack-notify-pr-open | |
| on: | |
| pull_request: | |
| types: [opened, reopened] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Slack notification | |
| uses: rtCamp/action-slack-notify@v2 | |
| env: | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
| SLACK_USERNAME: Github CI | |
| SLACK_ICON: https://github.com/github.png | |
| MSG_MINIMAL: ref,event | |
| SLACK_COLOR: '#36a64f' | |
| SLACK_TITLE: 'New Pull Request 🚀' | |
| SLACK_MESSAGE: | | |
| #${{ github.event.pull_request.number }} ${{ github.event.pull_request.title }} | |
| 🔗 ${{ github.event.pull_request.html_url }} |