diff --git a/playbooks/org.centos.stage.ci.dist-git-pr.test.complete.yml b/playbooks/org.centos.stage.ci.dist-git-pr.test.complete.yml new file mode 100644 index 0000000..a34df68 --- /dev/null +++ b/playbooks/org.centos.stage.ci.dist-git-pr.test.complete.yml @@ -0,0 +1,14 @@ +--- +- name: ci.dist-git-pr.test.complete + hosts: localhost + gather_facts: false + + vars_files: + - "/srv/private/vars_loopabull.yml" + + tasks: + - debug: var=msg + + roles: + - {role: flag_ci_pr, msg: msg, state: "complete"} + diff --git a/playbooks/org.centos.stage.ci.dist-git-pr.test.error.yml b/playbooks/org.centos.stage.ci.dist-git-pr.test.error.yml new file mode 100644 index 0000000..0d6ea87 --- /dev/null +++ b/playbooks/org.centos.stage.ci.dist-git-pr.test.error.yml @@ -0,0 +1,14 @@ +--- +- name: ci.dist-git-pr.test.error + hosts: localhost + gather_facts: false + + vars_files: + - "/srv/private/vars_loopabull.yml" + + tasks: + - debug: var=msg + + roles: + - {role: flag_ci_pr, msg: msg, state: "error"} + diff --git a/playbooks/org.centos.stage.ci.dist-git-pr.test.running.yml b/playbooks/org.centos.stage.ci.dist-git-pr.test.running.yml new file mode 100644 index 0000000..673497a --- /dev/null +++ b/playbooks/org.centos.stage.ci.dist-git-pr.test.running.yml @@ -0,0 +1,14 @@ +--- +- name: ci.dist-git-pr.test.running + hosts: localhost + gather_facts: false + + vars_files: + - "/srv/private/vars_loopabull.yml" + + tasks: + - debug: var=msg + + roles: + - {role: flag_ci_pr, msg: msg, state: "running"} +