From f173501a95cd9c501640ac75482e592427f1d163 Mon Sep 17 00:00:00 2001 From: yaozm Date: Thu, 11 Apr 2024 14:25:01 +0800 Subject: [PATCH] chore(feed): update feed file patterns - Updated feed file patterns in feed.yml - Changed file_pattern to include .atom and .rss files --- .github/workflows/feed.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/feed.yml b/.github/workflows/feed.yml index 2b94890ccc6..a0d964e7deb 100644 --- a/.github/workflows/feed.yml +++ b/.github/workflows/feed.yml @@ -43,5 +43,6 @@ jobs: - name: Commit changes uses: stefanzweifel/git-auto-commit-action@v5 with: + commit_options: '--no-verify' commit_message: 'Update feed' - file_pattern: '**.{atom,rss}' + file_pattern: '**.atom **.rss'