File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
github.ref == 'refs/heads/develop' ||
28
28
github.ref == 'refs/heads/main' ||
29
29
startsWith(github.ref, 'refs/heads/release') ||
30
- contains( github.event.head_commit.message, '/deploy sit') ||
31
- contains( github.event.head_commit.message, '/deploy uat')
30
+ github.event.head_commit.message == '/deploy sit' ||
31
+ github.event.head_commit.message == '/deploy uat'
32
32
runs-on : ubuntu-latest
33
33
outputs :
34
34
cumulus_files_created : ${{ steps.upload-files.outputs.files_uploaded }}
@@ -265,8 +265,8 @@ jobs:
265
265
github.ref == 'refs/heads/develop' ||
266
266
github.ref == 'refs/heads/main' ||
267
267
startsWith(github.ref, 'refs/heads/release') ||
268
- contains( github.event.head_commit.message, '/deploy sit') ||
269
- contains( github.event.head_commit.message, '/deploy uat')
268
+ github.event.head_commit.message == '/deploy sit' ||
269
+ github.event.head_commit.message == '/deploy uat'
270
270
name : Deploy Backend Infrastructure Terraform
271
271
runs-on : ubuntu-latest
272
272
You can’t perform that action at this time.
0 commit comments