32
32
env :
33
33
IS_MAIN : ${{ github.ref == 'refs/heads/main' }}
34
34
IS_DEVELOPMENT : ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/5.x' || github.ref == 'refs/heads/6.x' }}
35
- IS_SIX : ${{ github.ref == 'refs/heads/6 .x' }}
35
+ IS_FIVE : ${{ github.ref == 'refs/heads/5 .x' }}
36
36
permissions :
37
37
pull-requests : read
38
38
steps :
@@ -201,7 +201,7 @@ jobs:
201
201
base_commit : ${{ env.BASE_COMMIT }}
202
202
is_main : ${{ env.IS_MAIN }}
203
203
is_development : ${{ env.IS_DEVELOPMENT }}
204
- is_six : ${{ env.IS_SIX }}
204
+ is_five : ${{ env.IS_FIVE }}
205
205
member_is_in_org : ${{ steps.check_user_org_membership.outputs.is_member }}
206
206
has_browser_tests_label : ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'browser-tests') }}
207
207
dependency_cache_key : ${{ env.cachekey }}
@@ -1083,7 +1083,7 @@ jobs:
1083
1083
&& needs.job_required_tests.result == 'success'
1084
1084
&& (
1085
1085
needs.job_setup.outputs.is_main == 'true'
1086
- || needs.job_setup.outputs.is_six == 'true'
1086
+ || needs.job_setup.outputs.is_five == 'true'
1087
1087
|| (
1088
1088
github.event_name == 'pull_request'
1089
1089
&& (
@@ -1110,7 +1110,7 @@ jobs:
1110
1110
if [[ "${{ needs.job_setup.outputs.is_main }}" == "true" ]]; then
1111
1111
echo "deploy_version=canary" >> $GITHUB_ENV
1112
1112
else
1113
- echo "deploy_version=six " >> $GITHUB_ENV
1113
+ echo "deploy_version=five " >> $GITHUB_ENV
1114
1114
fi
1115
1115
1116
1116
- name : Invoke build
0 commit comments