Log
4 |
5 |
6 | ```
7 | {{.Log}}```
8 |
9 | {{ end -}}
10 | {{ end -}}
11 |
--------------------------------------------------------------------------------
/server/events/vcs/github_config.go:
--------------------------------------------------------------------------------
1 | package vcs
2 |
3 | // GithubConfig allows for custom github-specific functionality and behavior
4 | type GithubConfig struct {
5 | AllowMergeableBypassApply bool
6 | }
7 |
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/modules/production/main.tf:
--------------------------------------------------------------------------------
1 | module "null" {
2 | source = "../modules/null"
3 | var = "production"
4 | }
5 | output "var" {
6 | value = module.null.var
7 | }
8 |
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/policy-checks-clear-approval/main.tf:
--------------------------------------------------------------------------------
1 | resource "null_resource" "simple" {
2 | count = 1
3 | }
4 |
5 | output "workspace" {
6 | value = terraform.workspace
7 | }
8 |
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/policy-checks-custom-run-steps/main.tf:
--------------------------------------------------------------------------------
1 | resource "null_resource" "simple" {
2 | count = 1
3 | }
4 |
5 | output "workspace" {
6 | value = terraform.workspace
7 | }
8 |
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/policy-checks/exp-output-apply-failed.txt:
--------------------------------------------------------------------------------
1 | Ran Apply for dir: `.` workspace: `default`
2 |
3 | **Apply Failed**: All policies must pass for project before running apply.
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/simple-yaml/exp-output-merge.txt:
--------------------------------------------------------------------------------
1 | Locks and plans deleted for the projects and workspaces modified in this pull request:
2 |
3 | - dir: `.` workspaces: `default`, `staging`
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/state-rm-single-project/exp-output-merged.txt:
--------------------------------------------------------------------------------
1 | Locks and plans deleted for the projects and workspaces modified in this pull request:
2 |
3 | - dir: `.` workspace: `default`
--------------------------------------------------------------------------------
/server/controllers/events/testdata/test-repos/tfvars-yaml-no-autoplan/exp-output-merge.txt:
--------------------------------------------------------------------------------
1 | Locks and plans deleted for the projects and workspaces modified in this pull request:
2 |
3 | - dir: `.` workspace: `default`
--------------------------------------------------------------------------------
/server/events/templates/apply_wrapped_success.tmpl:
--------------------------------------------------------------------------------
1 | {{ define "applyWrappedSuccess" -}}
2 |