mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-21 02:22:44 +02:00
scripts: update release notes check for merge queue usage
Without this commit, PRs can fail to be merged via the merge queue, as it'll fail with this error: ``` Run scripts/check-release-notes.sh PR gh-readonly-queue didn't update release notes Error: Process completed with exit code 1. ```
This commit is contained in:
@ -8,8 +8,10 @@ PR_NUMBER=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')
|
|||||||
|
|
||||||
# If this is a PR being merged into the main repo, then the PR number will
|
# If this is a PR being merged into the main repo, then the PR number will
|
||||||
# actually be "master" here, so we'll ignore this case, and assume that in
|
# actually be "master" here, so we'll ignore this case, and assume that in
|
||||||
# order for it to be merged it had to pass the check in its base branch.
|
# order for it to be merged it had to pass the check in its base branch. If
|
||||||
if [ $PR_NUMBER == "master" ]; then
|
# we're trying to merge this with the Merge Queue, then the PR number will be
|
||||||
|
# "gh-readonly-queue" instead.
|
||||||
|
if [ $PR_NUMBER == "master" ] || [ $PR_NUMBER == "gh-readonly-queue"]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user