풀 요청이 제기되면 텔레그램을 통해 알림을 받습니다.
github 작업 활용
GitHub Actions은 GitHub 리포지토리에서 모든 종류의 자동화를 수행하는 데 사용할 수 있습니다.
일부 Google 검색을 빠르게 수행하여 풀 요청이 제기될 때 텔레그램 알림을 보내는 데 사용할 수 있는 작업을 찾았습니다.
새 GitHub 워크플로 만들기
# This is a basic workflow to help you get started with Actions
name: Telegram notification
# Controls when the action will run. Triggers the workflow on pull request
on:
pull_request:
branches: [ develop ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs the telegram notify action to send a notification
- name: Telegram Notify
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown
message: |
A new PR is raised [View all PR's](https://github.com/<user>/<repo>/pulls)
텔레그램 봇 토큰 및 그룹 고유 ID 얻기
https://api.telegram.org/bot<token>/getUpdates
chat.id
에서 그룹 고유 ID 찾기워크플로우에 필요한 비밀을 생성합니다.
secrets
TELEGRAM_TOKEN
라는 새 암호를 만듭니다. TELEGRAM_TO
라는 새 비밀을 만듭니다. 이야!! 풀 요청이 제기되면 그룹에 알림이 전송됩니다.
애플보이 / 전보 행동
Telegram 메시지를 보내는 GitHub Action입니다.
Reference
이 문제에 관하여(풀 요청이 제기되면 텔레그램을 통해 알림을 받습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nikhilvemula/get-notified-via-telegram-when-pull-request-is-raised-4ha4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)