Fix single quote not expanding vars
This commit is contained in:
parent
b361cf4495
commit
1736de2cd1
1 changed files with 4 additions and 3 deletions
|
|
@ -9,11 +9,12 @@ 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 'Feature Body $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 'Feature Body $RANDOM_STRING' -R $ORG/$SCRIPT_NAME-$RANDOM_STRING
|
||||
stdout 'Feature Request'
|
||||
exec gh search issues $RANDOM_STRING -R $ORG/$SCRIPT_NAME-$RANDOM_STRING
|
||||
stdout $RANDOM_STRING
|
||||
Loading…
Add table
Add a link
Reference in a new issue