76
76
- id : set_outputs
77
77
run : |
78
78
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
79
- if [[ "${{ github.event.inputs.test_pull_request }}" != "sdk " ]]; then
79
+ if [[ "${{ github.event.inputs.test_pull_request }}" != "nightly-packaging " ]]; then
80
80
# Triggered manually
81
81
echo "::set-output name=trigger::manual_trigger"
82
82
if [[ "${{ github.event.inputs.use_expanded_matrix }}" == "1" ]]; then
94
94
echo "::set-output name=github_ref::refs/pull/${{github.event.inputs.test_pull_request}}/merge"
95
95
echo "::set-output name=pr_number::${{ github.event.inputs.test_pull_request }}"
96
96
fi
97
- elif [[ "${{ github.event.inputs.test_pull_request }}" == "sdk " ]]; then
97
+ elif [[ "${{ github.event.inputs.test_pull_request }}" == "nightly-packaging " ]]; then
98
98
# Triggered by scheduled packaging SDK workflow.
99
99
echo "::set-output name=trigger::scheduled_trigger"
100
100
echo "::set-output name=github_ref::$GITHUB_SHA"
@@ -114,7 +114,7 @@ jobs:
114
114
else
115
115
echo "::set-output name=requested_tests::expanded"
116
116
fi
117
- elif [[ "${{ github.event.action }}" == "closed" && ${{ github.event.pull_request.merged }} ]]; then
117
+ elif [[ "${{ github.event.action }}" == "closed" && ${{ github.event.pull_request.merged == true }} ]]; then
118
118
echo "::set-output name=trigger::postsubmit_trigger"
119
119
echo "::set-output name=pr_number::${{ github.event.pull_request.number }}"
120
120
echo "::set-output name=requested_tests::auto"
@@ -1087,7 +1087,7 @@ jobs:
1087
1087
if : needs.check_and_prepare.outputs.trigger == 'scheduled_trigger'
1088
1088
shell : bash
1089
1089
run : |
1090
- if [[ "${{ github.event.inputs.test_pull_request }}" == "sdk " ]]; then
1090
+ if [[ "${{ github.event.inputs.test_pull_request }}" == "nightly-packaging " ]]; then
1091
1091
additional_flags=(--build_against sdk)
1092
1092
else
1093
1093
additional_flags=(--build_against repo)
0 commit comments