Skip to content

Commit

Permalink
chore: add changelog, fix lint issues and bump 1.4.7 (#210)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex <[email protected]>
  • Loading branch information
Alex-Izquierdo authored May 21, 2024
1 parent 1038b10 commit 191d025
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 11 deletions.
7 changes: 7 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
warn_list:
- experimental # all rules tagged as experimental
exclude_paths:
- continuous_integration.yml
- run_pytest.yml
- start_app.yml
- roles/test_role/
2 changes: 0 additions & 2 deletions .ansible-lint.yml

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# CHANGELOG

## 1.4.7

### Features

* feat: add raise_error and log_error option to insert_hosts_to_meta filter
* feat: enable webhook mTLS support

### Fixes

* fixed examples to use vars instead of jinja
8 changes: 4 additions & 4 deletions extensions/eda/rulebooks/github-ci-cd-rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
condition: event.meta.headers.X_Github_Event == "pull_request" and event.payload.action == "opened"
action:
post_event:
fact:
event:
repository_name: "{{event.payload.repository.full_name}}"
repo: "{{event.payload.pull_request.head.repo.clone_url}}"
ref: "{{event.payload.pull_request.head.ref}}"
Expand All @@ -24,7 +24,7 @@
condition: event.meta.headers.X_Github_Event == "pull_request" and event.payload.action == "reopened"
action:
post_event:
fact:
event:
repository_name: "{{event.payload.repository.full_name}}"
repo: "{{event.payload.pull_request.head.repo.clone_url}}"
ref: "{{event.payload.pull_request.head.ref}}"
Expand All @@ -34,7 +34,7 @@
condition: event.meta.headers.X_Github_Event == "pull_request" and event.payload.action == "synchronize"
action:
post_event:
fact:
event:
repository_name: "{{event.payload.repository.full_name}}"
repo: "{{event.payload.repository.clone_url}}"
ref: "{{event.payload.pull_request.head.ref}}"
Expand All @@ -52,7 +52,7 @@
print_event:
var_root: output
- name: debug
enabled: False
enabled: false
condition: event.payload is defined
action:
debug:
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: ansible
name: eda

# The version of the collection. Must be compatible with semantic versioning
version: 1.4.6
version: 1.4.7

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
6 changes: 3 additions & 3 deletions playbooks/hello.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- name: hello
- name: Hello
hosts: localhost
gather_facts: false
tasks:
- debug:
- name: Print hello
ansible.builtin.debug:
msg: hello
...
1 change: 0 additions & 1 deletion plugins/modules/upcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
- name: Test with a fail message
ansible.eda.upcase:
name: fail
"""

RETURN = r"""
Expand Down

0 comments on commit 191d025

Please sign in to comment.