From cca0bc86e5613fd2ed3e1c6ce79b3e48ecd4509f Mon Sep 17 00:00:00 2001 From: danney-chun <63285271+danney-chun@users.noreply.github.com> Date: Wed, 26 Nov 2025 13:25:40 +0900 Subject: [PATCH] Update pr-comment-bot.yml --- .github/workflows/pr-comment-bot.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-comment-bot.yml b/.github/workflows/pr-comment-bot.yml index 332622978..b5dbc14eb 100644 --- a/.github/workflows/pr-comment-bot.yml +++ b/.github/workflows/pr-comment-bot.yml @@ -1,20 +1,23 @@ -name: PR comment bot +name: PR Comment Bot on: issue_comment: types: [created] + jobs: pr-comment: - if: ${{ github.event.issue.pull_request }} + if : ${{ github.event.issue.pull_request}} runs-on: ubuntu-latest + env: + BOT_GH_TOKEN: ${{ secrets.BOT_GH_TOKEN }} steps: - uses: actions/checkout@v4 - # see list of commands: https://github.com/sendbird/release-automation-action#commands - uses: sendbird/release-automation-action@latest with: - gh_token: ${{ secrets.GITHUB_TOKEN }} + gh_token: ${{ env.BOT_GH_TOKEN }} product: 'uikit' platform: 'js' framework: 'react' product_jira_project_key: 'UIKIT' product_jira_version_prefix: 'js_uikit' ci: 'github' + \ No newline at end of file