@@ -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 aws-account-number : ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}
353359 aws-region : ${{ secrets.QA_AWS_REGION }}
354360 aws-role-arn : ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
@@ -357,11 +363,13 @@ jobs:
357363 # for tagged releases Docker image version is different from the Chainlink version (v2.13.0 -> 2.13.0)
358364 # for all other cases (PRs, commits, etc.) Docker image version is the same as the Chainlink version
359365
360-
361366 get-latest-available-images :
362367 name : Get Latest EVM Implementation's Images
363368 if : always() && needs.should-run.outputs.should_run == 'true' && needs.select-versions.outputs.evm_implementations != '' && github.event.inputs.base64TestList == ''
364- environment : integration
369+ environment :
370+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
371+ name : integration
372+ deployment : false
365373 runs-on : ubuntu-latest
366374 needs : [check-ecr-images-exist, should-run, select-versions]
367375 permissions :
@@ -440,7 +448,10 @@ jobs:
440448 prepare-compatibility-matrix :
441449 name : Prepare Compatibility Matrix
442450 if : always() && needs.should-run.outputs.should_run == 'true' && (needs.select-versions.outputs.evm_implementations != '' || github.event.inputs.base64TestList != '')
443- environment : integration
451+ environment :
452+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
453+ name : integration
454+ deployment : false
444455 permissions :
445456 checks : write
446457 pull-requests : write
@@ -542,7 +553,10 @@ jobs:
542553 run-client-compatibility-matrix :
543554 name : ${{ matrix.evm_node.product }} compatibility with ${{ matrix.evm_node.docker_image }}
544555 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 != ''
545- environment : integration
556+ environment :
557+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
558+ name : integration
559+ deployment : false
546560 permissions :
547561 checks : write
548562 pull-requests : write
@@ -655,7 +669,10 @@ jobs:
655669 start-slack-thread :
656670 name : Start Slack Thread
657671 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 != '')
658- environment : integration
672+ environment :
673+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
674+ name : integration
675+ deployment : false
659676 outputs :
660677 thread_ts : ${{ steps.slack.outputs.thread_ts }}
661678 permissions :
@@ -721,7 +738,10 @@ jobs:
721738 parse-test-results :
722739 name : Parse Test Results
723740 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 != '')
724- environment : integration
741+ environment :
742+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
743+ name : integration
744+ deployment : false
725745 permissions :
726746 checks : write
727747 pull-requests : write
@@ -761,7 +781,10 @@ jobs:
761781 display-test-results :
762782 name : Aggregated test results
763783 if : always() && needs.*.result != 'skipped' && needs.*.result != 'cancelled' && needs.should-run.outputs.should_run == 'true' && needs.parse-test-results.result == 'success'
764- environment : integration
784+ environment :
785+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
786+ name : integration
787+ deployment : false
765788 permissions :
766789 checks : write
767790 pull-requests : write
@@ -807,7 +830,10 @@ jobs:
807830 post-test-results-to-slack :
808831 name : Post Test Results for ${{matrix.product}}
809832 if : always() && needs.*.result != 'skipped' && needs.*.result != 'cancelled' && needs.should-run.outputs.should_run == 'true' && needs.parse-test-results.result == 'success'
810- environment : integration
833+ environment :
834+ # http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
835+ name : integration
836+ deployment : false
811837 permissions :
812838 checks : write
813839 pull-requests : write
0 commit comments