28 lines
796 B
Text
28 lines
796 B
Text
# Use gh as a credential helper
|
|
exec gh auth setup-git
|
|
|
|
# Create a repository with a file so it has a default branch
|
|
exec gh repo create $ORG/$SCRIPT_NAME-$RANDOM_STRING --add-readme --private
|
|
|
|
# Defer repo cleanup
|
|
defer gh repo delete --yes $ORG/$SCRIPT_NAME-$RANDOM_STRING
|
|
|
|
# Clone the repo
|
|
exec gh repo clone $ORG/$SCRIPT_NAME-$RANDOM_STRING
|
|
|
|
# Prepare a branch to PR
|
|
cd $SCRIPT_NAME-$RANDOM_STRING
|
|
exec git checkout -b feature-branch
|
|
exec git commit --allow-empty -m 'Empty Commit'
|
|
exec git push -u origin feature-branch
|
|
|
|
# Create the PR
|
|
exec gh pr create --title 'Feature Title' --body 'Feature Body'
|
|
stdout2env PR_URL
|
|
|
|
# Comment on the PR
|
|
exec gh pr comment $PR_URL --body 'Looks like a great feature!'
|
|
|
|
# View the PR
|
|
exec gh pr view $PR_URL --comments
|
|
stdout 'Looks like a great feature!'
|