From 455871013fa4c5f796551c8d587c0258cc8b27c9 Mon Sep 17 00:00:00 2001 From: zzswang Date: Tue, 28 Oct 2025 18:38:27 +0800 Subject: [PATCH 1/2] feat: update github runner version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 75de9c3..7bf47a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/actions/actions-runner:latest +FROM ghcr.io/actions/actions-runner:2.329.0 RUN sudo apt update -y && \ sudo apt install -y curl make bash jq From 25a965871be54030d88842f626e2d7429bfaec6b Mon Sep 17 00:00:00 2001 From: zzswang Date: Tue, 28 Oct 2025 18:40:52 +0800 Subject: [PATCH 2/2] chore: remove issue link --- .github/workflows/issue-link.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/issue-link.yml diff --git a/.github/workflows/issue-link.yml b/.github/workflows/issue-link.yml deleted file mode 100644 index 51d0c16..0000000 --- a/.github/workflows/issue-link.yml +++ /dev/null @@ -1,26 +0,0 @@ -# This workflow will run tests using node and then publish a package to NPM Packages when a release is created -# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages - -# 用于验证pr是否包括issue链接 - -name: Issue link verify - -on: - pull_request: - types: [edited, synchronize, opened, reopened] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - pr-verify: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Verify Linked Issue - uses: hattan/verify-linked-issue-action@v1.1.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - message: '请添加issue链接!'