From f3919a416608cacd777edfb7c618f2e55f732dd5 Mon Sep 17 00:00:00 2001 From: huangboming Date: Fri, 25 Apr 2025 18:26:38 +0800 Subject: [PATCH] chore: standardize commit messages for RSS feed updates --- .github/workflows/update_feed.yml | 2 +- .github/workflows/update_feed_monthly.yml | 2 +- .github/workflows/update_feed_weekly.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_feed.yml b/.github/workflows/update_feed.yml index c0b62c1..c3bad8f 100644 --- a/.github/workflows/update_feed.yml +++ b/.github/workflows/update_feed.yml @@ -34,5 +34,5 @@ jobs: git config --global user.email 'github-actions[bot]@users.noreply.github.com' git add feed.xml # Commit only if there are changes staged - git diff --staged --quiet || git commit -m "Update RSS feed" + git diff --staged --quiet || git commit -m "bot: update RSS feed" git push \ No newline at end of file diff --git a/.github/workflows/update_feed_monthly.yml b/.github/workflows/update_feed_monthly.yml index 8af20f7..5cdf171 100644 --- a/.github/workflows/update_feed_monthly.yml +++ b/.github/workflows/update_feed_monthly.yml @@ -42,5 +42,5 @@ jobs: git config --global user.email 'github-actions[bot]@users.noreply.github.com' git add feed_monthly.xml # Commit only if there are changes staged - git diff --staged --quiet || git commit -m "Update Monthly RSS feed" + git diff --staged --quiet || git commit -m "bot: update monthly RSS feed" git push \ No newline at end of file diff --git a/.github/workflows/update_feed_weekly.yml b/.github/workflows/update_feed_weekly.yml index 24d3393..f5e34cd 100644 --- a/.github/workflows/update_feed_weekly.yml +++ b/.github/workflows/update_feed_weekly.yml @@ -42,5 +42,5 @@ jobs: git config --global user.email 'github-actions[bot]@users.noreply.github.com' git add feed_weekly.xml # Commit only if there are changes staged - git diff --staged --quiet || git commit -m "Update Weekly RSS feed" + git diff --staged --quiet || git commit -m "bot: update weekly RSS feed" git push \ No newline at end of file