File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 types :
88 - created
99
10+ env :
11+ IS_A_PR : ${{ github.event.pull_request.number != 'null' && github.head_ref != 'protocol-squad' }}
12+
1013name : CI
1114jobs :
1215 lint :
@@ -107,12 +110,14 @@ jobs:
107110 decentraland_inspector_s3_bucket_key : ${{ steps.publish_decentraland_inspector.outputs.s3-bucket-key }}
108111 decentraland_js_runtime_s3_bucket_key : ${{ steps.publish_dcl_js_runtime.outputs.s3-bucket-key }}
109112 decentraland_ecs_bucket_key : ${{ steps.publish_ecs.outputs.s3-bucket-key }}
110- env :
111- IS_A_PR : ${{ github.event.pull_request.number != 'null' && github.head_ref != 'protocol-squad' }}
112113 steps :
113114 - name : (PR) Check if it's a PR
114115 if : ${{ env.IS_A_PR }}
115- run : echo "run from a PR"
116+ run : |
117+ echo "run from a PR"
118+ echo "from env '${{env.IS_A_PR}}'"
119+ echo "- '${{github.event.pull_request.number}}'"
120+ echo "- env '${{github.head_ref}}'"
116121 - uses : actions/checkout@master
117122 - uses : actions/setup-node@v3
118123 with :
You can’t perform that action at this time.
0 commit comments