[refactor] Kafka 이용한 Stat 비동기 업데이트 적용 #65
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 }} |