You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Lubycon Github Reviewer Notify
v1.6.0
다음과 같은 깃헙 액션을 .github/workflows
디렉토리에 생성해주세요.
액션 이름을 입력할 때는 현재 버전을 잘 보고 Lubycon/github-reviewer-slack-noti-action@{최신버전}
의 포맷으로 입력해주세요.
name: Sample Action
on: [pull_request, pull_request_review]
jobs:
create-pr:
runs-on: ubuntu-latest
name: Slack Notification
steps:
- name: Checkout
uses: actions/checkout@master
- name: Fire Notification
uses: Lubycon/[email protected]
with:
slack-bot-token: ${{ secrets.LUBYCON_SLACK_BOT_TOKEN }}
github-token: ${{ secrets.LUBYCON_GITHUB_TOKEN }}
channel-id: 'my-slack-channel-id'
mattermost-webhook: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
이름 | 설명 |
---|---|
slack-bot-token |
메세지를 보낼 슬랙봇 토큰. 루비콘 멤버라면 루비콘의 Org Secrets에 저장된 토큰을 사용할 수 있습니다 |
github-token |
Github Personal Access Token. repo 스코프를 지정해서 생성해주세요 |
channel-id |
노티를 쏘고 싶은 슬랙 채널 ID |
mattermost-webhook |
매터모스트 웹훅 URL (존재하면 매터모스트에도 노티를 보냅니다) |