From 54dfab160eedb5fb67007e455c4e61d7ddca8cb6 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:06:16 +0800 Subject: [PATCH 01/10] Add environment variable for Node.js version Set environment variable to force JavaScript actions to use Node.js 24. --- .github/workflows/github-actions-pages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/github-actions-pages.yml b/.github/workflows/github-actions-pages.yml index e94668d..fc37b01 100644 --- a/.github/workflows/github-actions-pages.yml +++ b/.github/workflows/github-actions-pages.yml @@ -6,6 +6,8 @@ on: - 'main' - 'master' workflow_dispatch: +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true jobs: deploy: From 0bb8e9f97521ff226a759b7e90e3d67d513ce53e Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:07:28 +0800 Subject: [PATCH 02/10] Set environment variable for JavaScript actions --- .github/workflows/auto-comment-pr.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auto-comment-pr.yml b/.github/workflows/auto-comment-pr.yml index 4315499..a176d58 100644 --- a/.github/workflows/auto-comment-pr.yml +++ b/.github/workflows/auto-comment-pr.yml @@ -8,6 +8,8 @@ on: pull_request_target: types: [ opened, synchronize ] branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true jobs: comment: From 458e19df980afdfe8aa6464c04b0e0bb2c7bb052 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:08:37 +0800 Subject: [PATCH 03/10] Add environment variable for Node.js version Set environment variable to force Node.js version 24 for JavaScript actions. --- .github/workflows/auto_merge.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/auto_merge.yml b/.github/workflows/auto_merge.yml index ead02cc..2c2a0d5 100644 --- a/.github/workflows/auto_merge.yml +++ b/.github/workflows/auto_merge.yml @@ -10,6 +10,9 @@ on: types: - completed status: { } +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: automerge: runs-on: ubuntu-latest From e2c02f7a2e6abe81df139eea56b240db905c4c99 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:09:28 +0800 Subject: [PATCH 04/10] Add environment variable for Node.js version Set environment variable to force Node.js 24 for JavaScript actions. --- .github/workflows/auto_request_review.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/auto_request_review.yml b/.github/workflows/auto_request_review.yml index e57172d..2c39f6d 100644 --- a/.github/workflows/auto_request_review.yml +++ b/.github/workflows/auto_request_review.yml @@ -9,6 +9,9 @@ on: types: [ opened, ready_for_review, reopened, synchronize ] branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: auto-request-review: name: Auto Request Review From 42b179076e1913834b6c77efd6c845c52d238ef3 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:31:12 +0800 Subject: [PATCH 05/10] Update GitHub token in auto-comment PR workflow --- .github/workflows/auto-comment-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-comment-pr.yml b/.github/workflows/auto-comment-pr.yml index a176d58..8889722 100644 --- a/.github/workflows/auto-comment-pr.yml +++ b/.github/workflows/auto-comment-pr.yml @@ -22,7 +22,7 @@ jobs: - name: Create a comment uses: actions/github-script@v7 with: - github-token: ${{ secrets.BOT_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} script: | const { owner, repo, number: issue_number } = context.issue; From 3677f0e24480a6190baa8d9113da37a33d6ec0ed Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:35:20 +0800 Subject: [PATCH 06/10] Change GITHUB_TOKEN in auto_merge.yml Updated GITHUB_TOKEN to use secrets.GITHUB_TOKEN for automerge action. --- .github/workflows/auto_merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_merge.yml b/.github/workflows/auto_merge.yml index 2c2a0d5..0a495a8 100644 --- a/.github/workflows/auto_merge.yml +++ b/.github/workflows/auto_merge.yml @@ -23,7 +23,7 @@ jobs: - name: automerge uses: "pascalgn/automerge-action@v0.16.4" env: - GITHUB_TOKEN: "${{ secrets.BOT_TOKEN }}" + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" MERGE_LABELS: "approved,auto merge,!ready to review" MERGE_METHOD: "squash" MERGE_COMMIT_MESSAGE: "automatic" From 69b5a0bff08e51ecee540da24c4909c6cd8766ba Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:37:58 +0800 Subject: [PATCH 07/10] Update token reference in auto_request_review.yml --- .github/workflows/auto_request_review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_request_review.yml b/.github/workflows/auto_request_review.yml index 2c39f6d..3b951cf 100644 --- a/.github/workflows/auto_request_review.yml +++ b/.github/workflows/auto_request_review.yml @@ -20,7 +20,7 @@ jobs: - name: Request review based on files changes and/or groups the author belongs to uses: necojackarc/auto-request-review@v0.13.0 with: - token: ${{ secrets.BOT_TOKEN }} + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" config: .github/reviewers.yml # Config file location override # Look for config locally during run instead of in repo # For instance, if you'd like to use a config file stored in external storage, From 6074af3a0f292bb54c23e32e7fcebf389d644452 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 19:52:48 +0800 Subject: [PATCH 08/10] Fix token parameter in auto_request_review.yml --- .github/workflows/auto_request_review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_request_review.yml b/.github/workflows/auto_request_review.yml index 3b951cf..4d1497a 100644 --- a/.github/workflows/auto_request_review.yml +++ b/.github/workflows/auto_request_review.yml @@ -20,7 +20,7 @@ jobs: - name: Request review based on files changes and/or groups the author belongs to uses: necojackarc/auto-request-review@v0.13.0 with: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + token: ${{ secrets.GITHUB_TOKEN }} config: .github/reviewers.yml # Config file location override # Look for config locally during run instead of in repo # For instance, if you'd like to use a config file stored in external storage, From 9b96f0bc2e6d23864da70ecfaad4eda66c903df5 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 20:03:58 +0800 Subject: [PATCH 09/10] Rename auto_request_review.yml.disabled to auto_request_review.yml --- .../{auto_request_review.yml => auto_request_review.yml.disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{auto_request_review.yml => auto_request_review.yml.disabled} (100%) diff --git a/.github/workflows/auto_request_review.yml b/.github/workflows/auto_request_review.yml.disabled similarity index 100% rename from .github/workflows/auto_request_review.yml rename to .github/workflows/auto_request_review.yml.disabled From 36232098ef32ef8c73c3165e1852920869b69f85 Mon Sep 17 00:00:00 2001 From: 27704534 <1374232024@qq.com> Date: Sat, 23 May 2026 20:33:27 +0800 Subject: [PATCH 10/10] Update RIP document for project status and workflows Removed workflows and noted the status of the project. --- ...52\254\345\260\217\345\212\251\346\211\213&Node.js-20.txt" | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 "RIP\350\214\225\347\276\212&\346\237\240\346\252\254\345\260\217\345\212\251\346\211\213&Node.js-20.txt" diff --git "a/RIP\350\214\225\347\276\212&\346\237\240\346\252\254\345\260\217\345\212\251\346\211\213&Node.js-20.txt" "b/RIP\350\214\225\347\276\212&\346\237\240\346\252\254\345\260\217\345\212\251\346\211\213&Node.js-20.txt" new file mode 100644 index 0000000..f385d84 --- /dev/null +++ "b/RIP\350\214\225\347\276\212&\346\237\240\346\252\254\345\260\217\345\212\251\346\211\213&Node.js-20.txt" @@ -0,0 +1,4 @@ +柠檬小助手已死(token没有了,应该是被山羊删了) +Node.js 20要删了,把workflow修了一下 +没有人审核代码了,把分配审核代码的workflow删了 +RIP 茕羊