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:
-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"]
+}