File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
.github/actions/check-skip-merge-queue Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ inputs:
3131
3232outputs :
3333 up-to-date :
34- value : ${{ steps.up-to-date.outputs.up-to-date }}
34+ value : ${{ steps.up-to-date.outputs.up-to-date || 'false' }}
3535 description : Whether the pull request is up-to-date with the base branch
3636 and is first in the merge queue, allowing it to skip the merge queue.
3737
@@ -102,10 +102,3 @@ runs:
102102 else
103103 echo "up-to-date=false" >> "$GITHUB_OUTPUT"
104104 fi
105-
106- - name : Output `false` on failure
107- if : steps.pr-details.outcome == 'failure' || steps.up-to-date.outcome == 'failure'
108- shell : bash
109- # If any previous step failed for any reason, instead of failing the
110- # entire action, we catch the failure here and set the output to false.
111- run : echo "up-to-date=false" >> "$GITHUB_OUTPUT"
You can’t perform that action at this time.
0 commit comments