From b7ae342faa4595ae55a6dbe6fcf9cfbda85bfe42 Mon Sep 17 00:00:00 2001 From: Almeida Date: Mon, 25 Mar 2024 12:39:11 +0000 Subject: [PATCH] ci: ignore commits by dependabot (#929) --- scripts/bump-version.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bump-version.mjs b/scripts/bump-version.mjs index 8af33274..f027e1f2 100644 --- a/scripts/bump-version.mjs +++ b/scripts/bump-version.mjs @@ -4,7 +4,7 @@ import process from 'node:process'; import { Octokit } from '@octokit/action'; import conventionalRecommendedBump from 'conventional-recommended-bump'; -const IGNORED_COMMIT_AUTHORS = ['renovate[bot]']; +const IGNORED_COMMIT_AUTHORS = ['renovate[bot]', 'dependabot[bot]']; const RELEASE_COMMIT_PREFIX = 'chore(release):'; console.log('🚀 Running the release script...');