@@ -20,8 +20,8 @@ inputs:
2020 required : false
2121
2222 ddev-start :
23- description : " Set to 'no' if you wish to skip the `ddev start` step, removing downtime ."
24- default : " yes "
23+ description : " If set to 'true', `ddev start` will be run ."
24+ default : " true "
2525
2626 git-reference :
2727 description : " The git reference to checkout."
@@ -34,9 +34,9 @@ inputs:
3434 default : " Sites/${{ github.repository }}/pr${{ github.event.number }}"
3535
3636 sync :
37- description : " If set to 'yes' ', the environment will be destroyed and replaced with data using the 'sync-command' input."
37+ description : " If set to 'true ', the environment will be destroyed and replaced with data using the 'sync-command' input."
3838 required : false
39- default : " no "
39+ default : " false "
4040
4141 composer-install-command :
4242 description : " The command to run to prepare the codebase"
@@ -103,7 +103,7 @@ runs:
103103 # ssh-keyscan -H liveserver.com -H github.com -H otherserver.com
104104
105105 - name : Start DDEV
106- if : ${{ inputs.ddev-start == 'yes ' }}
106+ if : ${{ inputs.ddev-start == 'true ' }}
107107 shell : bash
108108 working-directory : ${{ env.DDEV_PROJECT_PATH_FULL }}
109109 env :
@@ -129,7 +129,7 @@ runs:
129129 ${{ inputs.composer-install-command }}
130130
131131 - name : Sync
132- if : ${{ inputs.sync == 'yes ' }}
132+ if : ${{ inputs.sync == 'true ' }}
133133 shell : bash
134134 working-directory : ${{ env.DDEV_PROJECT_PATH_FULL }}
135135 run : |
0 commit comments