We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 559c68e commit 97a73b8Copy full SHA for 97a73b8
.hookshot.conf
@@ -6,4 +6,6 @@ task = "release"
6
notify_url = "http://localhost:5600"
7
8
[tag."*"]
9
-task = "test-hook"
+method = "ansible"
10
+inventory = "test/ansible/inventory"
11
+playbook = "test/ansible/test-playbook.yml"
test/ansible/inventory
@@ -0,0 +1 @@
1
+127.0.0.1
test/ansible/test-playbook.yml
@@ -0,0 +1,7 @@
+- hosts: 127.0.0.1
2
+ connection: local
3
+ sudo: no
4
+ tasks:
5
+ - name: test action
+ copy: content="{{ git_ref }} | {{ git_commit_sha }}"
+ dest="/tmp/hookshot_git_data.txt"
0 commit comments