Skip to content

Commit 4a6a157

Browse files
authored
Fix condition in the spring-merge-dependabot-pr.yml
Signed-off-by: Artem Bilan <[email protected]>
1 parent 4c101b0 commit 4a6a157

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/spring-merge-dependabot-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
if [ -z $AUTO_MERGE ]
7575
then
7676
PR_MILESTONE=$(gh pr view ${{ github.event.pull_request.number }} --json milestone -q '.milestone.number')
77-
if [ -z $PR_MILESTONE ]
77+
if [ $PR_MILESTONE ]
7878
then
7979
AUTO_MERGE=true
8080
fi

0 commit comments

Comments
 (0)