Skip to content

Commit 01ee59a

Browse files
committed
add echo for debug
1 parent 4699436 commit 01ee59a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ jobs:
3535
--json number,body,createdAt \
3636
--jq '[.[] | select(.createdAt > "$TAG_DATE") | .number]'
3737
)
38+
echo "Found PRs: $ALL_PRS"
3839

3940
# Find all issue number from PRs merged into release branch
4041
ISSUE_NUMBERS=""
4142
for pr_number in $(echo "$ALL_PRS" | jq -r '.[]'); do
4243

4344
# Get the merge commit SHA for this PR
4445
MERGE_COMMIT=$(gh pr view "$pr_number" --json mergeCommit --jq '.mergeCommit.oid')
46+
echo " PR $pr_number merge commit: $MERGE_COMMIT"
4547

4648
# Check if this commit exists in the release branch
4749
if git merge-base --is-ancestor "$MERGE_COMMIT" origin/release 2>/dev/null; then

0 commit comments

Comments
 (0)