Skip to content

Instantly share code, notes, and snippets.

View timrulebosch's full-sized avatar

Timothy Rule timrulebosch

  • Robert Bosch GmbH
  • Abstatt, Germany
View GitHub Profile
@timrulebosch
timrulebosch / pr-pull-squash.sh
Created September 26, 2025 08:49
PR Pull Squash
#!/bin/bash
set -e
# Parse input parameters.
if [ "$#" -ne 2 ]; then
echo "Usage: $0 <PR Number> <PR Title>"
exit 1
fi
PR_ID="$1"
PR_TITLE="$2"