Skip to content

Commit

Permalink
feat: GitHub action secret 변수 주입
Browse files Browse the repository at this point in the history
  • Loading branch information
psychology50 authored Sep 1, 2023
1 parent 9e757f0 commit 860226e
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/kakao_ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: BE CI

on:
workflow_dispatch:

push:
branches:
- main
- develop
on:
push:
branches:
- main
- develop
pull_request:
types: [review_requested, opened, reopened, ready_for_review]
pull_request_review:
types: [submitted]

jobs:
build-and-notify:
Expand All @@ -18,3 +20,10 @@ jobs:

- name: Send KakaoTalk notification
uses: psychology50/kakao-chat-ci@main
with:
KAKAO_CLIENT: ${{ secrets.KAKAO_CLIENT }}
KAKAO_EMAIL: ${{ secrets.KAKAO_EMAIL }}
KAKAO_PASSWORD: ${{ secrets.KAKAO_PASSWORD }}
KAKAO_TEMPLATE_ID: 97232
KAKAO_SENDER_TEMPLATE_ID: 97280
KAKAO_REDIRECT_URL: http://localhost:3000/oauth/kakao/callback

0 comments on commit 860226e

Please sign in to comment.