From 5d7516dc8cfd8efb5a42763368f5b53eccfda3b4 Mon Sep 17 00:00:00 2001 From: YuBaoku <49938469+EmmonsCurse@users.noreply.github.com> Date: Mon, 17 Nov 2025 22:34:38 +0800 Subject: [PATCH] [CI] Enable check_pr_template in CI rerun (#5093) * [CI] Drop checklist section in PR template check * [CI] Enable check_pr_template in CI rerun --- .github/workflows/rerun.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/rerun.yml b/.github/workflows/rerun.yml index 1cca4143f..d1d8218ce 100644 --- a/.github/workflows/rerun.yml +++ b/.github/workflows/rerun.yml @@ -56,6 +56,16 @@ jobs: REPO: ${{ github.event.repository.name }} JOB_NAME: 'CI_XPU' + - name: Rerun Check PR Template + if: ${{ contains(github.event.comment.body, 'check_pr_template') }} + uses: ./.github/actions/rerun-workflow + with: + PR_ID: ${{ github.event.issue.number }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OWNER: ${{ github.repository_owner }} + REPO: ${{ github.event.repository.name }} + JOB_NAME: 'Check PR Template' + - name: Rerun Codestyle-check if: ${{ contains(github.event.comment.body, 'codestyle') || contains(github.event.comment.body, 'pre_commit') }} uses: ./.github/actions/rerun-workflow