Skip to content

Instantly share code, notes, and snippets.

@arajkumar
Last active December 2, 2022 13:29
Show Gist options
  • Save arajkumar/35fcef687bfb82418a300b7c45caac2a to your computer and use it in GitHub Desktop.
Save arajkumar/35fcef687bfb82418a300b7c45caac2a to your computer and use it in GitHub Desktop.
Create dummy PR
set -e
BRANCH="dummy-$(date +%Y.%m.%d-%s)"
git fetch origin master && git checkout -b $BRANCH FETCH_HEAD
touch ${BRANCH}
git add ${BRANCH} && git commit -m "chore: Dummy PR to retrigger CI"
git rm ${BRANCH} && git commit -m "chore: Dummy PR to retrigger CI"
git push fork $BRANCH --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment