Skip to content

Commit ac3c0c3

Browse files
committed
syntax
1 parent 439ef9f commit ac3c0c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
echo "$TAG_DATE"
2727
2828
PR_DATA=$(gh pr list \
29-
--search "is:pr is:open created:>=$TAG_DATE OR is:open created:>=$TAG_DATE" \
29+
--search "is:pr is:open created:>=$TAG_DATE \
3030
--json number,body \
3131
--jq '.[] | select(.body != null and (.body | test("issues/\\d+"))) | [.body | scan("issues/(\\d+)"; "g")] | .[]'
3232
)
3333
echo "Found PRs:"
3434
echo "$PR_DATA"
3535
gh pr list \
36-
--search "is:pr is:open created:>=$TAG_DATE OR is:open created:>=$TAG_DATE" \
36+
--search "is:pr is:open created:>=$TAG_DATE \
3737
--json number,body \
38-
--jq '.[] | select(.body != null and (.body | test("issues/\\d+"))) | [.body | scan("issues/(\\d+)"; "g")] | .[]'
38+
--jq '.[] | select(.body != null and (.body | test("issues/\\d+"))) | [.body | scan("issues/(\\d+)"; "g")] | .[]' \
3939
| while read issue_number; do
4040
echo "Commenting on issue #$issue_number"
4141
gh issue comment "$issue_number" --body "This issue was resolved and included in the latest release."

0 commit comments

Comments
 (0)