From 2ac8d4b14f796852a7d0f7d2779772594c63665a Mon Sep 17 00:00:00 2001 From: fujie Date: Wed, 11 Feb 2026 13:26:00 +0800 Subject: [PATCH] ci: remove points and followers as commit triggers since they are now dynamic badges --- .github/workflows/community-stats.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/community-stats.yml b/.github/workflows/community-stats.yml index 034b1ff..a422c29 100644 --- a/.github/workflows/community-stats.yml +++ b/.github/workflows/community-stats.yml @@ -102,19 +102,7 @@ jobs: echo "πŸ”„ Plugin version changed" fi - # ζ£€ζŸ₯η§―εˆ†ε’žεŠ  - if [ "$NEW_POINTS" -gt "$OLD_POINTS" ]; then - SHOULD_COMMIT="true" - CHANGE_REASON="${CHANGE_REASON:+$CHANGE_REASON, }points increased ($OLD_POINTS -> $NEW_POINTS)" - echo "⭐ Points increased: $OLD_POINTS -> $NEW_POINTS" - fi - - # ζ£€ζŸ₯η²‰δΈε’žεŠ  - if [ "$NEW_FOLLOWERS" -gt "$OLD_FOLLOWERS" ]; then - SHOULD_COMMIT="true" - CHANGE_REASON="${CHANGE_REASON:+$CHANGE_REASON, }followers increased ($OLD_FOLLOWERS -> $NEW_FOLLOWERS)" - echo "πŸ‘₯ Followers increased: $OLD_FOLLOWERS -> $NEW_FOLLOWERS" - fi + echo "should_commit=$SHOULD_COMMIT" >> $GITHUB_OUTPUT echo "change_reason=$CHANGE_REASON" >> $GITHUB_OUTPUT