Skip to content

Commit

Permalink
build: mark roll of a new major browser version as breaking (#2586)
Browse files Browse the repository at this point in the history
Currently, the feat commits only generate a patch.
  • Loading branch information
OrKoN authored Sep 5, 2024
1 parent ecb18d3 commit 764fab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/update_chrome_revision.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if (newSemVer.compare(oldSemVer) <= 0) {
} else if (newSemVer.major === oldSemVer.major) {
message = `build(chrome): ${message}`;
} else {
message = `feat(chrome): ${message}`;
message = `feat(chrome)!: ${message}`;
}

actions.setOutput('commit', message);
Expand Down

0 comments on commit 764fab5

Please sign in to comment.