20 lines
No EOL
609 B
Text
20 lines
No EOL
609 B
Text
# 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
|
|
|
|
# Create an issue in the repo
|
|
cd $SCRIPT_NAME-$RANDOM_STRING
|
|
|
|
exec gh issue create --title 'Feature Request' --body $RANDOM_STRING
|
|
|
|
# It takes some time for the issue to be created and indexed
|
|
sleep 5
|
|
|
|
# Search for the issue
|
|
exec gh search issues $RANDOM_STRING -R $ORG/$SCRIPT_NAME-$RANDOM_STRING
|
|
stdout $RANDOM_STRING |