We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c7ae4 commit c8c413cCopy full SHA for c8c413c
src/processor.ts
@@ -261,7 +261,7 @@ class CommitProcessor {
261
await runGitCommand(this.processor.repoPaths[repoid], `add -A`);
262
await runGitCommand(
263
this.processor.repoPaths[repoid],
264
- `commit -m "${this.processor.config?.syncCommitPrefix} ${this.commit.message}" --author="${this.commit.authorName} <${this.commit.authorEmail}>" --date="${this.commit.authorDate}"`
+ `commit -m "${this.processor.config?.syncCommitPrefix} [skip ci] ${this.commit.message}" --author="${this.commit.authorName} <${this.commit.authorEmail}>" --date="${this.commit.authorDate}"`
265
);
266
if (!this.processor.processOptions.skipPush) {
267
await runGitCommand(this.processor.repoPaths[repoid], `push`);
0 commit comments