From c55768f177d88a190ab171b2c34ee979cbd32b52 Mon Sep 17 00:00:00 2001 From: illiakovalenko Date: Fri, 5 May 2023 12:28:12 +0300 Subject: [PATCH] Update script --- scripts/generate-api-docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-api-docs.js b/scripts/generate-api-docs.js index a50f652ae6..b111f05837 100644 --- a/scripts/generate-api-docs.js +++ b/scripts/generate-api-docs.js @@ -2,5 +2,5 @@ const { execSync } = require('child_process'); execSync('npx lerna run generate-docs --since=origin/dev', { stdio: 'inherit' }); execSync('git add ./ref-docs/**/*', { stdio: 'inherit' }); -execSync('git commit -m "Update API docs [skip CI]"', { stdio: 'inherit' }); +execSync('git commit -m "Update API docs [skip ci]"', { stdio: 'inherit' }); execSync('git push', { stdio: 'inherit' });