github notification

# 사내 Github PR review, push 등이 email 알림으로 오는데,
# email 은 잘 보지도 않고 쌓이기만 해서(메일 정리하는것도 일)
# 깃헙 email 알림을 비활성화
(깃헙 개인 settings -> Notifications -> Email notification preferences)

# notifier-for-github 크롬 익스텐션을 사용하면 깃헙 알림이 아이콘으로 표시된다.

# Root URL 설정 - 기본 https://github.com
# github enterprise 라면 https://github.회사.com 와 같이 설정한다.

# Token 설정
# github enterprise 라면 https://github.회사.com/settings/tokens
(깃헙 개인 settings -> Settings Developer settings -> Personal access tokens -> repo, notification 체크해서 생성)
# 또는 익스텐션 옵션 설정 "create token" 링크로 로그인하면
# 다음과 같이 repo, notification 체크된 상태로 토큰 설정을 할 수 있다.

# 이제 알림이 있다면 크롬에서 다음과 같이 알림 개수가 표시된다.

# notifier-for-github 익스텐션 background console 을 보면
# https://github.회사.com/api/v3/notifications?page=1&per_page=1
# 과 같이 요청하는것으로 보인다.

# 참고 - github notification api
# 사용자명(ysoftman)과 토큰(abc123456789)으로 사용할 수 있다.
curl 'https://github.com/api/v3/notifications?page=1&per_page=1' -u ysoftman:abc123456789


comments:

댓글 쓰기