Created
April 29, 2024 18:39
-
Star
(102)
You must be signed in to star a gist -
Fork
(14)
You must be signed in to fork a gist
-
-
Save dhh/c5051aae633ff91bc4ce30528e4f0b60 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Abort sign off on any error | |
set -e | |
# Start the benchmark timer | |
SECONDS=0 | |
# Repository introspection | |
OWNER=$(gh repo view --json owner --jq .owner.login) | |
REPO=$(gh repo view --json name --jq .name) | |
SHA=$(git rev-parse HEAD) | |
USER=$(git config user.name) | |
# Progress reporting | |
GREEN=32; RED=31; BLUE=34 | |
announce() { echo -e "\033[0;$2m$1\033[0m"; } | |
run() { | |
local SPLIT=$SECONDS | |
announce "\nRun $1" $BLUE | |
eval "$1" | |
local INTERVAL=$((SECONDS-SPLIT)) | |
announce "Completed $1 in $INTERVAL seconds" $GREEN | |
} | |
# Sign off requires a clean repository | |
if [[ -n $(git status --porcelain) ]]; then | |
announce "Can't sign off on a dirty repository!" $RED | |
git status | |
exit 1 | |
else | |
announce "Attempting to sign off on $SHA in $OWNER/$REPO as $USER" $GREEN | |
fi | |
# Required steps for sign off | |
run "./bin/rubocop" | |
run "./bin/bundle-audit check --update" | |
run "./bin/brakeman -q --no-summary" | |
run "./bin/rails test" | |
run "./bin/rails test:system" | |
# Report successful sign off to GitHub | |
gh api \ | |
--method POST --silent \ | |
-H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" \ | |
/repos/$OWNER/$REPO/statuses/$SHA \ | |
-f "context=signoff" -f "state=success" -f "description=Signed off by $USER ($SECONDS seconds)" | |
announce "Signed off on $SHA in $SECONDS seconds" $GREEN |
For those landing on this gist from a Google Search, you might want to check the basecamp/gh-signoff
repository where I believe this bash script has landed and will be maintained.
It's meant to be used as the last step of a local CI running on the developer's own workstation:
๐ https://x.com/dhh/status/1898307737991156120
๐ rails/rails#54693
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How is this used? I'm familiar with the git commit sign-off functionality but this is pushing directly to the GH API and I don't see the statuses reflected on the commits. Maybe there is an enterprise setting for enforced sign-off policies that cause it to be shown or something.
But I'm curious the full use case here rather than doing a more direct git --signoff and pushing a commit (or an amended unpushed commit).