Skip to content

Commit

Permalink
Allow For No Test Deployment - IN-358
Browse files Browse the repository at this point in the history
  • Loading branch information
baileyhoedemaker authored Oct 3, 2023
1 parent 046bf8a commit f0e6fa5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy-sfdx-project-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ on:
description: Username of Salesforce user to authenticate as; must have permission to create scratch orgs
required: false
default: admin@wtax.prod
run-tests:
type: boolean
description: Whether to run tests as part of the deployment. This is required when deploying to a production org.
required: false
default: true
secrets:
ansible-vault-password:
description: Password to be used to decrypt the `jwt-key-encrypted`.
Expand All @@ -122,6 +127,6 @@ jobs:
client-id: ${{ inputs.client-id }}
username: ${{ inputs.username }}
jwt-key-encrypted: ${{ inputs.jwt-key-encrypted }}
run-tests: true
run-tests: ${{ inputs.run-tests }}
secrets:
ansible-vault-password: ${{ secrets.ansible-vault-password }}

0 comments on commit f0e6fa5

Please sign in to comment.