-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#17] Make slack message json format #19
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
간단한 피드백 남겼습니다. 확인해주세요!
image: adminer | ||
restart: always | ||
ports: | ||
- 8082:8080 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
근데 mariadb를 8080으로 띄우면 실제 서버는 몇번 포트로 띄우실 생각이실까요?
String sendResult = slackService.sendMessage( | ||
ReviewSlackMessage.makeReviewMatchingMessage(channelName, reviews)); | ||
|
||
log.info("Call Slack API result : {}", sendResult); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
로그 👍
@@ -0,0 +1,4 @@ | |||
slack: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이쪽부분은 일단 삭제 해주세요!
@@ -16,12 +16,15 @@ | |||
@Slf4j | |||
@Service | |||
public class SlackService { | |||
private static final String SLACK_API_BASE_URL = "https://slack.com/api"; | |||
private static final String SLACK_API_BASE_URL = "https://hooks.slack.com"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
어? 원래 하던 방식으로 안하신 이유가 있나요?
봇으로 관리하는게 더 좋을거 같은데 왜 hooks을 쓰셨나요?
close #17