Update shell script called by action

Script creates a branch to commit changes if any are present, then opens an issue and assigns to me. The issue create portion was failing because the --body parameter is required.
This commit is contained in:
Jason Johnston 2023-07-06 10:34:04 -04:00
Родитель 0393b58298
Коммит 4fae920530
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -8,5 +8,5 @@ else
git add --all
git commit -a -m "Regenerated API clients with Kiota"
git push --set-upstream origin $branchName
gh issue create --title "Validate regenerated Kiota clients in get started" --repo microsoft/kiota-samples --assignee jasonjoh
gh issue create --title "Validate regenerated Kiota clients in get started" --body "Changes in branch $branchName" --repo microsoft/kiota-samples --assignee jasonjoh
fi