#!/bin/bash ############################################################################ # What is this script? # # Chef uses a workflow tool called Expeditor to manage version bumps, changelogs # and releases. When a dependency of chef is released, expeditor is triggered # against this repository to run this script. It bumps our gem lock files and opens # a PR. That way humans can do hard work and bots can open gem bump PRs. ############################################################################ set -evx branch="expeditor/${GEM_NAME}_${VERSION}" git checkout -b "$branch" bundle install # it appears that the gem that triggers this script fires off this script before # the gem is actually available via bundler on rubygems.org. sleep 240 gem install rake rake dependencies:update_gemfile_lock git add . # give a friendly message for the commit and make sure it's noted for any future audit of our codebase that no # DCO sign-off is needed for this sort of PR since it contains no intellectual property git commit --message "Bump $GEM_NAME to $VERSION" --message "This pull request was triggered automatically via Expeditor when $GEM_NAME $VERSION was promoted to Rubygems." --message "This change falls under the obvious fix policy so no Developer Certificate of Origin (DCO) sign-off is required." open_pull_request # Get back to master and cleanup the leftovers - any changed files left over at the end of this script will get committed to master. git checkout - git branch -D "$branch"