Last active
December 2, 2022 13:29
-
-
Save arajkumar/35fcef687bfb82418a300b7c45caac2a to your computer and use it in GitHub Desktop.
Create dummy PR
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
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