Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deploy workflow to wait for CI
This prevents the deploy workflow from being run before the application tests have been completed. This is to ensure that the commit passes application tests before being deployed. The 'workflow_run' trigger is being used as these events cannot be triggered directly by users. This is to prevent non-production team members from deploying. The 'repository_dispatch' and 'deployment' trigger were also considered, however those events can be directly created via API calls hence would give deploy access to non-production users (as we assign them "write" roles to repos and GitHub currently doesn't provide more fine grained access controls).
- Loading branch information