Skip to content

Commit d100e4f

Browse files
authored
Fix cancel workflow run (#856)
1 parent b2ecf37 commit d100e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
else
113113
echo "::set-output name=requested_tests::expanded"
114114
fi
115-
elif [[ "${{ github.event.action }}" == "closed" && ${{ github.event.pull_request.merged }} = true ]]; then
115+
elif [[ "${{ github.event.action }}" == "closed" && "${{ github.event.pull_request.merged == true}}" == "true" ]]; then
116116
echo "::set-output name=trigger::postsubmit_trigger"
117117
echo "::set-output name=pr_number::${{ github.event.pull_request.number }}"
118118
echo "::set-output name=requested_tests::auto"

0 commit comments

Comments
 (0)