Fixing Dockerfilelint action

This commit is contained in:
Oleksandr Bordun 2019-04-22 12:17:11 +02:00 committed by GitHub
parent 7ba8158c63
commit 433d223b19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ workflow "Pull Request" {
action "Docker Lint [PR]" {
uses = "docker://replicated/dockerfilelint"
args = "[\"./Dockerfile\"]"
args = "Dockerfile"
}
action "Shell Lint [PR]" {
@ -36,7 +36,7 @@ action "Master Branch" {
action "Docker Lint" {
uses = "docker://replicated/dockerfilelint"
needs = ["Master Branch"]
args = "[\"./Dockerfile\"]"
args = "Dockerfile"
}
action "Shell Lint" {