From 26ade510631854e22aaa7fbdc58850a5be9ccdb5 Mon Sep 17 00:00:00 2001 From: Nikita Vasilev Date: Fri, 21 Nov 2025 15:12:28 +0400 Subject: [PATCH] chore(changelog): update `changelog.yml` --- .github/workflows/changelog.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 9314945..0d4ea39 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -3,9 +3,6 @@ on: push: branches: - main - pull_request: - branches: - - main permissions: contents: write jobs: @@ -13,7 +10,10 @@ jobs: name: Update CHANGELOG runs-on: ubuntu-latest timeout-minutes: 15 - if: "!startsWith(github.event.head_commit.message, '[Release]')" + if: | + !startsWith(github.event.head_commit.message, '[Release]') && + !startsWith(github.event.head_commit.message, 'docs: update CHANGELOG.md') && + github.event.head_commit.author.name != 'github-actions[bot]' steps: - uses: actions/checkout@v5 with: @@ -39,5 +39,7 @@ jobs: uses: stefanzweifel/git-auto-commit-action@v7 if: steps.changelog-changes.outputs.has-changes == 'true' with: - commit_message: "docs: update CHANGELOG.md" - file_pattern: CHANGELOG.md \ No newline at end of file + commit_message: "docs: update CHANGELOG.md [skip ci]" + file_pattern: CHANGELOG.md + commit_user_name: github-actions[bot] + commit_user_email: github-actions[bot]@users.noreply.github.com