Adding promotion and post publish events to the ci.hcl. (#14128)

This commit is contained in:
Sarah Thompson
2022-02-25 17:12:16 +00:00
committed by GitHub
parent 9ab1f383a6
commit 66261434cc

View File

@@ -178,8 +178,16 @@ event "verify" {
}
}
event "promote-staging" {
## These events are publish and post-publish events and 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.
}
event "promote-staging" {
depends = ["trigger-staging"]
action "promote-staging" {
organization = "hashicorp"
repository = "crt-workflows-common"
@@ -187,16 +195,30 @@ event "promote-staging" {
}
notification {
on = "fail"
}
notification {
on = "success"
on = "always"
}
}
event "promote-production" {
event "promote-staging-docker" {
depends = ["promote-staging"]
action "promote-staging-docker" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-staging-docker"
}
notification {
on = "always"
}
}
event "trigger-production" {
// 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"
@@ -204,28 +226,32 @@ event "promote-production" {
}
notification {
on = "fail"
}
notification {
on = "success"
on = "always"
}
}
event "post-publish" {
event "promote-production-docker" {
depends = ["promote-production"]
action "post-publish" {
action "promote-production-docker" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "post-publish"
workflow = "promote-production-docker"
}
notification {
on = "fail"
}
notification {
on = "success"
on = "always"
}
}
event "promote-production-packaging" {
depends = ["promote-production-docker"]
action "promote-production-packaging" {
organization = "hashicorp"
repository = "crt-workflows-common"
workflow = "promote-production-packaging"
}
notification {
on = "always"
}
}