fix hcl formatting

This commit is contained in:
Michele Degges 2022-07-08 14:07:18 -07:00
parent 244976bcb2
commit 0c696eb638
1 changed files with 22 additions and 8 deletions

View File

@ -2,12 +2,15 @@ schema = "1"
project "nomad" {
team = "nomad"
slack {
notification_channel = "C03B5EWFW01"
}
github {
organization = "hashicorp"
repository = "nomad"
release_branches = [
"main",
"release/1.0.x",
@ -19,12 +22,12 @@ project "nomad" {
}
event "merge" {
// "entrypoint" to use if build is not run automatically
// i.e. send "merge" complete signal to orchestrator to trigger build
// "entrypoint" to use if build is not run automatically // i.e. send "merge" complete signal to orchestrator to trigger build
}
event "build" {
depends = ["merge"]
action "build" {
organization = "hashicorp"
repository = "nomad"
@ -34,6 +37,7 @@ event "build" {
event "upload-dev" {
depends = ["build"]
action "upload-dev" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -47,6 +51,7 @@ event "upload-dev" {
event "security-scan-binaries" {
depends = ["upload-dev"]
action "security-scan-binaries" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -61,6 +66,7 @@ event "security-scan-binaries" {
event "notarize-darwin-amd64" {
depends = ["security-scan-binaries"]
action "notarize-darwin-amd64" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -74,6 +80,7 @@ event "notarize-darwin-amd64" {
event "notarize-darwin-arm64" {
depends = ["notarize-darwin-amd64"]
action "notarize-darwin-arm64" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -87,6 +94,7 @@ event "notarize-darwin-arm64" {
event "notarize-windows-386" {
depends = ["notarize-darwin-arm64"]
action "notarize-windows-386" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -100,6 +108,7 @@ event "notarize-windows-386" {
event "notarize-windows-amd64" {
depends = ["notarize-windows-386"]
action "notarize-windows-amd64" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -113,6 +122,7 @@ event "notarize-windows-amd64" {
event "sign" {
depends = ["notarize-windows-amd64"]
action "sign" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -126,6 +136,7 @@ event "sign" {
event "sign-linux-rpms" {
depends = ["sign"]
action "sign-linux-rpms" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -139,6 +150,7 @@ event "sign-linux-rpms" {
event "verify" {
depends = ["sign-linux-rpms"]
action "verify" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -152,10 +164,11 @@ event "verify" {
event "fossa-scan" {
depends = ["verify"]
action "fossa-scan" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "fossa-scan"
repository = "crt-workflows-common"
workflow = "fossa-scan"
}
}
@ -163,12 +176,12 @@ event "fossa-scan" {
## they should be added to the end of the file after the verify event stanza.
event "trigger-staging" {
// This event is dispatched by the bob trigger-promotion command
// and is required - do not delete.
// This event is dispatched by the bob trigger-promotion command // and is required - do not delete.
}
event "promote-staging" {
depends = ["trigger-staging"]
action "promote-staging" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -182,12 +195,12 @@ event "promote-staging" {
}
event "trigger-production" {
// This event is dispatched by the bob trigger-promotion command
// and is required - do not delete.
// This event is dispatched by the bob trigger-promotion command // and is required - do not delete.
}
event "promote-production" {
depends = ["trigger-production"]
action "promote-production" {
organization = "hashicorp"
repository = "crt-workflows-common"
@ -201,6 +214,7 @@ event "promote-production" {
event "promote-production-packaging" {
depends = ["promote-production"]
action "promote-production-packaging" {
organization = "hashicorp"
repository = "crt-workflows-common"