Skip to content

Commit

Permalink
[All] fix: [Release] PR 머릿말 디스코드 알림 처리 (#940)
Browse files Browse the repository at this point in the history
* fix: [Release] 머릿말에도 디스코드 알림 처리

* refactor: `Release`인 경우 `All`로 처리
  • Loading branch information
donghoony authored Nov 10, 2024
1 parent cfdaeac commit 7cd031c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/discord-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
elif [ "$PR_PREFIX" = '[FE]' ]; then
echo Frontend PR Found!
echo "PR_PREFIX=FE" >> $GITHUB_ENV
elif [ "$PR_PREFIX" = '[All]' ]; then
elif [ "$PR_PREFIX" = '[All]' ] || [ "$PR_PREFIX" = '[Release]' ]; then
echo All PR Found!
echo "PR_PREFIX=All" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 7cd031c

Please sign in to comment.