Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <webknjaz@redhat.com>2019-03-14 18:00:32 +0300
committerGitHub <noreply@github.com>2019-03-14 18:00:32 +0300
commita319fc11ef888c81a763279a3bfef4da01d6d409 (patch)
tree505835595e077ed3bb0f9dc39cf1eab7c06df398
parenta8fe668238e26ea565fb80a453da1045ac2d3fe3 (diff)
Run Ansible Lint Action against wordpress-nginx
-rw-r--r--.github/main.workflow16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/main.workflow b/.github/main.workflow
new file mode 100644
index 0000000..b3afedf
--- /dev/null
+++ b/.github/main.workflow
@@ -0,0 +1,16 @@
+workflow "On push" {
+ on = "push"
+ resolves = ["ansible/ansible-lint-action@master"]
+}
+
+action "ansible/ansible-lint-action@master" {
+ uses = "ansible/ansible-lint-action@master"
+ env = {
+ ACTION_PLAYBOOK_NAME = "wordpress-nginx/site.yml"
+ }
+}
+
+workflow "On PR" {
+ on = "pull_request"
+ resolves = ["ansible/ansible-lint-action@master"]
+}