Acknowledge contributors. https://github.com/all-contributors/all-contributors
This commit is contained in:
parent
52e7261736
commit
29f1ed2e4a
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue