Skip to content

Commit

Permalink
Remove unneeded statement in title (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe authored Apr 1, 2024
1 parent ed40519 commit b9fdf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/ForwardMerger/forward_merger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ForwardMerger extends OpsBotPlugin {
const { data: pr } = await this.context.octokit.pulls.create({
owner: this.repo.owner.login,
repo: this.repo.name,
title: `Forward-merge ${this.currentBranch} into ${nextBranch} [skip ci]`,
title: `Forward-merge ${this.currentBranch} into ${nextBranch}`,
head: this.currentBranch,
base: nextBranch,
maintainer_can_modify: false,
Expand Down

0 comments on commit b9fdf07

Please sign in to comment.