Skip to content

Commit f0d8bc4

Browse files
committed
d
1 parent a5eb475 commit f0d8bc4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/create-outdated-packages-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: check existing issue
3131
run: |
32-
$json = gh issue list --search "in:body *${{ env.REPORT_ID }}*" --repo $GITHUB_REPOSITORY --app github-actions --state open --json id,number,body | ConvertFrom-Json
32+
$json = Invoke-Expression "gh issue list --search `"in:body *${{ env.REPORT_ID }}*`" --repo $GITHUB_REPOSITORY --app github-actions --state open --json id,number,body" | ConvertFrom-Json
3333
if($json.body -eq $null) {
3434
echo "ISSUE_NUMBER=$($json.number)" >> "$GITHUB_OUTPUT"
3535
exit 0

botframework-sdk/script.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
$json = gh issue list --search "in:body *id:outdated-packages*" --repo southworks/botbuilder-js --app github-actions --state closed --json id,number,body | ConvertFrom-Json
1+
$json = Invoke-Expression "gh issue list --search `"in:body *id:outdated-packages*`" --repo southworks/botbuilder-js --app github-actions --state open --json id,number,body" | ConvertFrom-Json
22

33
if($json.body -eq $null) {
44
Write-Output "No issues found"
55
exit 0
66
}
77

8-
# $json.body
8+
$json.body
99

1010
# $str = "
1111

0 commit comments

Comments
 (0)