From 7b66868b80313ab58a56f049a510b09650c791f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Wed, 30 Jul 2025 22:23:36 +0800 Subject: [PATCH] feat: update ci --- .github/workflows/issue-auto-close.yml | 1 + .github/workflows/issue-auto-reply.yml | 27 -------------------------- 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 .github/workflows/issue-auto-reply.yml diff --git a/.github/workflows/issue-auto-close.yml b/.github/workflows/issue-auto-close.yml index 523f015c..1b540a63 100644 --- a/.github/workflows/issue-auto-close.yml +++ b/.github/workflows/issue-auto-close.yml @@ -11,6 +11,7 @@ permissions: jobs: issue-lock: runs-on: ubuntu-latest + continue-on-error: true steps: - name: Set GH_REPO run: echo "GH_REPO=${{ github.repository }}" >> $GITHUB_ENV diff --git a/.github/workflows/issue-auto-reply.yml b/.github/workflows/issue-auto-reply.yml deleted file mode 100644 index 1597cbeb..00000000 --- a/.github/workflows/issue-auto-reply.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Issue Auto Reply -on: - issues: - types: [ labeled ] -permissions: - contents: read -jobs: - issue-reply: - permissions: - issues: write - pull-requests: write - runs-on: ubuntu-latest - steps: - - name: ☢️ Bug - if: github.event.label.name == '☢️ Bug' - uses: actions-cool/issues-helper@v3 - with: - actions: 'create-comment' - token: ${{ secrets.GITHUB_TOKEN }} - issue-number: ${{ github.event.issue.number }} - body: | - Hi @${{ github.event.issue.user.login }} 👋 - - 感谢提交 Bug,请确保您的描述清晰,日志完整,最好能提供复现步骤,以便我们更快定位问题并解决。 - Thanks for submitting a bug, please make sure your description is clear, log is complete, and it is best to provide a reproduction step so that we can locate and solve the problem faster. - - ![Log](https://github.com/user-attachments/assets/0ce7a32d-cc79-4bef-91fc-5bec1d0ed376)