Gitlab CI를 위한 매우 쉬운 Discord 알림 작업
4044 단어 devopsdiscordgitlabproductivity
파이프라인을 생성하면 모든 것이 자동으로 실행되고 성공적으로 완료되는지 여부만 알릴 수 있습니다.
긴 이야기를 짧게 하자면, 손을 더럽히자.
우선 작업할 파이프라인이 필요합니다. 다음은 경량 알파인 도커 이미지를 실행하는 매우 간단한 작업입니다.
# .gitlab-ci.yml
stages:
- test
- notification
test:
image: alpine:latest
stage: test
script:
- echo 🕵🏻 Checking...
다음 단계는 알림을 표시할 Discord 채널을 구성하는 것입니다. 다음 경로
Your channel > Edit Channel > Integrations > Create Webhook
를 수행한 다음 봇의 이름을 지정하고 Copy Webhook URL
를 클릭합니다. ( Discord Webhook Guide )프로젝트 설정에서 Gitlab CI 구성으로 이동하여 새 변수를 추가합니다.
settings > CI / CD > Variables
그런 다음 WEBHOOK_URL
라는 새 변수를 만들고 Discord에서 복사한 URL을 값으로 붙여넣습니다.이제 우리는 DiscordHooks 녀석들이 만든 스크립트를 사용할 것입니다.
그러면 파이프라인은 다음과 같을 것입니다.
# .gitlab-ci.yml
stages:
- test
- notification
test:
image: alpine:latest
stage: test
script:
- echo 🕵🏻 Checking...
success_notification:
image: alpine:latest
stage: notification
script:
- apk add --update git curl
- wget https://raw.githubusercontent.com/DiscordHooks/gitlab-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- /bin/ash ./send.sh success $WEBHOOK_URL
when: on_success
failure_notification:
image: alpine:latest
stage: notification
script:
- apk add --update git curl
- wget https://raw.githubusercontent.com/DiscordHooks/gitlab-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- /bin/ash ./send.sh failure $WEBHOOK_URL
when: on_failure
이제 진정하고 즐기십시오! 전체 코드를 확인하십시오here.
참고: 이러한 알림 작업을 캐시하지 마십시오.
Reference
이 문제에 관하여(Gitlab CI를 위한 매우 쉬운 Discord 알림 작업), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/anditsou/super-easy-discord-notification-job-for-gitlab-ci-4di텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)