From 1b116cf4cdcd35f5c00f41576f68437e4d62a6de Mon Sep 17 00:00:00 2001 From: Calvin Kirs Date: Wed, 22 Nov 2023 15:11:59 +0800 Subject: [PATCH] [Chore](workflow)Fix Pr comment not worker --- .github/workflows/auto-pr-reply.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/auto-pr-reply.yml b/.github/workflows/auto-pr-reply.yml index bdfdb1e4b4a4f18..867fd31ec3f5a27 100644 --- a/.github/workflows/auto-pr-reply.yml +++ b/.github/workflows/auto-pr-reply.yml @@ -8,13 +8,15 @@ jobs: comment: runs-on: ubuntu-latest steps: - - name: Comment on PR - uses: ./.github/actions/create-or-update-comment - with: - persist-credentials: false - submodules: recursive - issue-number: ${{ github.event.pull_request.number }} - body: | - Thank you for your contribution to Apache Doris. - - Don't know what should be done next? See [How to process your PR](https://cwiki.apache.org/confluence/display/DORIS/How+to+process+your+PR) + - name: Checkout + uses: actions/checkout@v3 + with: + persist-credentials: false + - name: Comment on PR + uses: ./.github/actions/create-or-update-comment + with: + issue-number: ${{ github.event.pull_request.number }} + body: | + Thank you for your contribution to Apache Doris. + + Don't know what should be done next? See [How to process your PR](https://cwiki.apache.org/confluence/display/DORIS/How+to+process+your+PR)