@@ -286,7 +286,10 @@ jobs:
286286 check-ecr-images-exist :
287287 name : Check images used as test dependencies exist in ECR
288288 if : always() && needs.should-run.outputs.should_run == 'true' && (needs.select-versions.outputs.evm_implementations != '' || github.event.inputs.base64TestList != '')
289- environment : integration
289+ environment :
290+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
291+ name : integration
292+ deployment : false
290293 permissions :
291294 id-token : write
292295 contents : read
@@ -329,7 +332,10 @@ jobs:
329332 needs.select-versions.outputs.evm_implementations != '' ||
330333 github.event.inputs.base64TestList != ''
331334 )
332- environment : integration
335+ environment :
336+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
337+ name : integration
338+ deployment : false
333339 permissions :
334340 id-token : write
335341 contents : read
@@ -348,7 +354,7 @@ jobs:
348354 image-tag : ${{ inputs.chainlinkVersion || needs.select-versions.outputs.chainlink_image_version || github.sha }}
349355 dockerfile : core/chainlink.Dockerfile
350356 docker-registry-url : ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com
351- docker-repository-name : ' chainlink'
357+ docker-repository-name : " chainlink"
352358 docker-additional-build-args : |
353359 DOCKER_TAG=${{ inputs.chainlinkVersion || needs.select-versions.outputs.chainlink_image_version || github.sha }}
354360 aws-account-number : ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}
@@ -359,11 +365,13 @@ jobs:
359365 # for tagged releases Docker image version is different from the Chainlink version (v2.13.0 -> 2.13.0)
360366 # for all other cases (PRs, commits, etc.) Docker image version is the same as the Chainlink version
361367
362-
363368 get-latest-available-images :
364369 name : Get Latest EVM Implementation's Images
365370 if : always() && needs.should-run.outputs.should_run == 'true' && needs.select-versions.outputs.evm_implementations != '' && github.event.inputs.base64TestList == ''
366- environment : integration
371+ environment :
372+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
373+ name : integration
374+ deployment : false
367375 runs-on : ubuntu-latest
368376 needs : [check-ecr-images-exist, should-run, select-versions]
369377 permissions :
@@ -442,7 +450,10 @@ jobs:
442450 prepare-compatibility-matrix :
443451 name : Prepare Compatibility Matrix
444452 if : always() && needs.should-run.outputs.should_run == 'true' && (needs.select-versions.outputs.evm_implementations != '' || github.event.inputs.base64TestList != '')
445- environment : integration
453+ environment :
454+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
455+ name : integration
456+ deployment : false
446457 permissions :
447458 checks : write
448459 pull-requests : write
@@ -544,7 +555,10 @@ jobs:
544555 run-client-compatibility-matrix :
545556 name : ${{ matrix.evm_node.product }} compatibility with ${{ matrix.evm_node.docker_image }}
546557 if : always() && needs.should-run.outputs.should_run == 'true' && (needs.build-chainlink.result == 'success' || needs.build-chainlink.result == 'skipped') && needs.prepare-compatibility-matrix.outputs.matrix != ''
547- environment : integration
558+ environment :
559+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
560+ name : integration
561+ deployment : false
548562 permissions :
549563 checks : write
550564 pull-requests : write
@@ -657,7 +671,10 @@ jobs:
657671 start-slack-thread :
658672 name : Start Slack Thread
659673 if : always() && needs.*.result != 'skipped' && needs.*.result != 'cancelled' && needs.should-run.outputs.should_run == 'true' && (needs.select-versions.outputs.evm_implementations != '' || github.event.inputs.base64TestList != '')
660- environment : integration
674+ environment :
675+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
676+ name : integration
677+ deployment : false
661678 outputs :
662679 thread_ts : ${{ steps.slack.outputs.thread_ts }}
663680 permissions :
@@ -723,7 +740,10 @@ jobs:
723740 parse-test-results :
724741 name : Parse Test Results
725742 if : always() && needs.*.result != 'skipped' && needs.*.result != 'cancelled' && needs.should-run.outputs.should_run == 'true' && (needs.select-versions.outputs.evm_implementations != '' || github.event.inputs.base64TestList != '')
726- environment : integration
743+ environment :
744+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
745+ name : integration
746+ deployment : false
727747 permissions :
728748 checks : write
729749 pull-requests : write
@@ -763,7 +783,10 @@ jobs:
763783 display-test-results :
764784 name : Aggregated test results
765785 if : always() && needs.*.result != 'skipped' && needs.*.result != 'cancelled' && needs.should-run.outputs.should_run == 'true' && needs.parse-test-results.result == 'success'
766- environment : integration
786+ environment :
787+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
788+ name : integration
789+ deployment : false
767790 permissions :
768791 checks : write
769792 pull-requests : write
@@ -809,7 +832,10 @@ jobs:
809832 post-test-results-to-slack :
810833 name : Post Test Results for ${{matrix.product}}
811834 if : always() && needs.*.result != 'skipped' && needs.*.result != 'cancelled' && needs.should-run.outputs.should_run == 'true' && needs.parse-test-results.result == 'success'
812- environment : integration
835+ environment :
836+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
837+ name : integration
838+ deployment : false
813839 permissions :
814840 checks : write
815841 pull-requests : write
0 commit comments