This commit is contained in:
Robert de Bock 2020-07-07 21:34:05 +02:00
parent 52e7261736
commit 29f1ed2e4a
2 changed files with 15 additions and 0 deletions

View File

@ -130,6 +130,11 @@
file: "{{ role_path }}/.travis.yml" file: "{{ role_path }}/.travis.yml"
name: travis name: travis
- name: load github contributors
uri:
url: "https://api.github.com/repos/robertdebock/ansible-role-{{ role_name }}/contributors"
register: github_contributors
- name: generate secure hash - name: generate secure hash
command: "/usr/bin/travis encrypt --pro robertdebock:{{ secure.slack_token }} --no-interactive" command: "/usr/bin/travis encrypt --pro robertdebock:{{ secure.slack_token }} --no-interactive"
register: travis_secure register: travis_secure

View File

@ -138,6 +138,16 @@ image="debian" tag="stable" tox
{{ meta.galaxy_info.license }} {{ meta.galaxy_info.license }}
{% if github_contributors.json | length > 1 %}
## [Contributors](#contributors)
I'd like to thank everybody that made contributions to this repository. It motivates me, improves the code and is just fun to collaborate.
{% for contributor in github_contributors.json %}{% if contributor.login != "robertdebock" %}
- [{{ contributor.login }}](https://github.com/{{ contributor.login }})
{% endif %}
{% endfor %}
{% endif %}
## [Author Information](#author-information) ## [Author Information](#author-information)