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 b28f7a8 commit ae51f88Copy full SHA for ae51f88
.github/workflows/GitFlow_Nightly-builds.yml
@@ -95,7 +95,7 @@ jobs:
95
Write-Host "`n[INFO] Searching for merged PRs between $TAG_COMMIT and HEAD..." -ForegroundColor Cyan
96
97
# Get all merged PRs to the branch since the tag commit
98
- $MERGED_PRS = git log $BRANCH --merges --grep="Merge pull request" --pretty=format:"%h %s" "$TAG_COMMIT..HEAD"
+ $MERGED_PRS = git log --merges --grep="Merge pull request" --pretty=format:"%h %s" "$TAG_COMMIT..HEAD"
99
100
# Count merges
101
$MERGE_COUNT = ($MERGED_PRS | Measure-Object).Count
0 commit comments