diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-23 10:45:53 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-23 10:45:53 -0700 |
commit | 6add481cf6eab66677e3143601a36cc10602ca33 (patch) | |
tree | 3e5fbbb5453ca3843ea0dd2540ac2a5497213f92 /.expeditor/update_version.sh | |
parent | eca8f9519e6719774d7fb5581b81b9e4a879acaa (diff) | |
download | chef-6add481cf6eab66677e3143601a36cc10602ca33.tar.gz |
Explain what our expeditor scripts are doing
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/update_version.sh')
-rwxr-xr-x | .expeditor/update_version.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.expeditor/update_version.sh b/.expeditor/update_version.sh index 17ad5a16a7..222ae5cf27 100755 --- a/.expeditor/update_version.sh +++ b/.expeditor/update_version.sh @@ -1,8 +1,13 @@ #!/bin/sh + +############################################################################ +# What is this script? # -# After a PR merge, Chef Expeditor will bump the PATCH version in the VERSION file. -# It then executes this file to update any other files/components with that new version. -# +# Chef uses a workflow tool called Expeditor to manage version bumps, changelogs +# and releases. After a PR is merged in Chef Expeditor calls this script to update +# the PATCH version in the VERSION file as well as the version.rb file in both chef +# and chef-config. When that's done it bundle updates to pull in that new chef-config. +############################################################################ set -evx |