Skip to content

Commit

Permalink
ci: assign reviewers and disable slack hook on prepare pr (#1204)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhayab committed Oct 10, 2023
1 parent 2f5c683 commit fa9350b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ship.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module.exports = {
publishCommand({ tag }) {
return `yarn publish --access public --tag ${tag}`;
},
pullRequestTeamReviewers: ['frontend-experiences-web'],
versionUpdated({ exec, dir, version }) {
// Update package dependencies
exec(
Expand Down Expand Up @@ -56,6 +57,11 @@ module.exports = {

return true;
},
slack: {
// disable slack notification for `prepared` lifecycle.
// Ship.js will send slack message only for `releaseSuccess`.
prepared: null,
},
};

function updatePackagesVersionFile({ version, files }) {
Expand Down

0 comments on commit fa9350b

Please sign in to comment.