This version of conform fixes a few message format errors that were confusing when a policy was violated. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
16 lines
214 B
HCL
16 lines
214 B
HCL
workflow "Conform Pull Request" {
|
|
on = "pull_request"
|
|
|
|
resolves = [
|
|
"conform"
|
|
]
|
|
}
|
|
|
|
action "conform" {
|
|
uses = "docker://autonomy/conform:v0.1.0-alpha.16"
|
|
|
|
secrets = [
|
|
"GITHUB_TOKEN"
|
|
]
|
|
}
|