We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4699436 commit 01ee59aCopy full SHA for 01ee59a
.github/workflows/test.yml
@@ -35,13 +35,15 @@ jobs:
35
--json number,body,createdAt \
36
--jq '[.[] | select(.createdAt > "$TAG_DATE") | .number]'
37
)
38
+ echo "Found PRs: $ALL_PRS"
39
40
# Find all issue number from PRs merged into release branch
41
ISSUE_NUMBERS=""
42
for pr_number in $(echo "$ALL_PRS" | jq -r '.[]'); do
43
44
# Get the merge commit SHA for this PR
45
MERGE_COMMIT=$(gh pr view "$pr_number" --json mergeCommit --jq '.mergeCommit.oid')
46
+ echo " PR $pr_number merge commit: $MERGE_COMMIT"
47
48
# Check if this commit exists in the release branch
49
if git merge-base --is-ancestor "$MERGE_COMMIT" origin/release 2>/dev/null; then
0 commit comments