From e0dab26bb7e90214c1ccddfcd25226b6b5b0a516 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Sun, 13 Sep 2026 09:51:19 +0200 Subject: [PATCH] tools: pass author to commit message validator Signed-off-by: Filip Skokan --- .github/workflows/commit-lint.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 037ea7e810e0..6b173d8bc978 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -41,7 +41,11 @@ jobs: '--no-validate-metadata', '--tap', '-', ], { cwd: process.env.RUNNER_TEMP, - input: Buffer.from(JSON.stringify([{ id: commit.sha, message: commit.commit.message }])), + input: Buffer.from(JSON.stringify([{ + id: commit.sha, + message: commit.commit.message, + author: commit.commit.author, + }])), silent: true, ignoreReturnCode: true, });