Skip to content

Commit 1659554

Browse files
authored
Merge pull request #6 from nmaludy/nmaludy/master
Updated action runner_type to python-script
2 parents 219737a + 66a4a86 commit 1659554

19 files changed

+22
-18
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 0.5.0
4+
5+
- Updated action `runner_type` from `run-python` to `python-script`
6+
37
## 0.4.0
48

59
- Added consul.health_service action to query a services status and group the result by hostname

actions/create_token.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: create_token
22
pack: consul
3-
runner_type: run-python
3+
runner_type: python-script
44
description: "Create an acl token"
55
enabled: true
66
entry_point: "create_token.py"

actions/delete.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: delete
22
pack: consul
3-
runner_type: run-python
3+
runner_type: python-script
44
description: "Delete value from Consul server"
55
enabled: true
66
entry_point: "delete.py"

actions/deregister_service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: deregister_service
2-
runner_type: run-python
2+
runner_type: python-script
33
description: "De-Register an external service in Consul"
44
enabled: true
55
entry_point: "deregister_service.py"

actions/destroy_token.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: destroy_token
22
pack: consul
3-
runner_type: run-python
3+
runner_type: python-script
44
description: "Destroy an acl token"
55
enabled: true
66
entry_point: "destroy_token.py"

actions/get.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: get
2-
runner_type: run-python
2+
runner_type: python-script
33
description: "Get value from Consul server"
44
enabled: true
55
entry_point: "get.py"

actions/health_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: health_check
2-
runner_type: run-python
2+
runner_type: python-script
33
description: "Query health status of a check in consul"
44
enabled: true
55
entry_point: "health_check.py"

actions/health_service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: health_service
2-
runner_type: run-python
2+
runner_type: python-script
33
description: "Query health status of a service in consul"
44
enabled: true
55
entry_point: "health_service.py"

actions/list.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: list
2-
runner_type: run-python
2+
runner_type: python-script
33
description: "List values from Consul server"
44
enabled: true
55
entry_point: "get.py"

actions/list_datacenters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: list_datacenters
2-
runner_type: run-python
2+
runner_type: python-script
33
description: "Real-time query of all known datacenters in Consul"
44
enabled: true
55
entry_point: "list_datacenters.py"

0 commit comments

Comments
 (0)