#!/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 REPONAME=$(echo $EXPEDITOR_REPO | cut -d '/' -f 2) DEPNAME="${EXPEDITOR_GEM_NAME:-${REPONAME:?Could not find gem name}}" function new_gem_included() { git diff | grep -E '^\+' | grep "${DEPNAME} (${EXPEDITOR_VERSION})" } branch="expeditor/${EXPEDITOR_BRANCH}_${DEPNAME}_${EXPEDITOR_VERSION}" git checkout -b "$branch" tries=12 for (( i=1; i<=$tries; i+=1 )); do bundle lock --update new_gem_included && break || sleep 20 if [ $i -eq $tries ]; then echo "Searching for '${DEPNAME} (${EXPEDITOR_VERSION})' ${i} times and did not find it" exit 1 else echo "Searched ${i} times for '${DEPNAME} (${EXPEDITOR_VERSION})'" fi done 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 $DEPNAME to $EXPEDITOR_VERSION" --message "This pull request was triggered automatically via Expeditor when $DEPNAME $EXPEDITOR_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 "$EXPEDITOR_BRANCH" # Get back to main and cleanup the leftovers - any changed files left over at the end of this script will get committed to main. git checkout - git branch -D "$branch"