Skip to content

Commit 2d7dd87

Browse files
authored
Fix: 문법 오류 교정 및 단어 수정
1 parent c8a200e commit 2d7dd87

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/sms_backend_master_cd.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
name: sms-production-CD
2+
13
on:
24
push:
35
branches: [ "ops/cd-test" ]
46

57
jobs:
68
CD:
7-
name: CD
89
runs-on: ubuntu-latest
910
environment: production
1011

@@ -75,20 +76,20 @@ jobs:
7576
7677
- name: SMS-Backend-CD Discord Notification
7778
uses: sarisia/actions-status-discord@v1
78-
if: ${{ success() }}
79+
if: success()
7980
with:
8081
title: ✅ SMS-Backend-CD 성공! ✅
8182
webhook: ${{ secrets.SMS_DISCORD_WEBHOOK }}
8283
status: ${{ job.status }}
8384
image: ${{ secrets.CD_SUCCESS_IMAGE }}
84-
description: 영역전개 CD 성공
85+
description: 프로덕션 CD 성공
8586
color: 00FF00
8687
username: SMS CD 봇
8788
url: https://github.com/GSM-MSG/SMS-BackEnd
8889

8990
- name: SMS-Backend-CD Discord Notification
9091
uses: sarisia/actions-status-discord@v1
91-
if: ${{ failure() }}
92+
if: failure()
9293
with:
9394
title: ❗️ SMS-Backend-CD 실패! ❗️
9495
webhook: ${{ secrets.SMS_DISCORD_WEBHOOK }}

0 commit comments

Comments
 (0)