Fix for roles that have not been published.
This commit is contained in:
parent
f682c0bea4
commit
d50711c5d4
|
|
@ -134,6 +134,7 @@
|
|||
uri:
|
||||
url: "https://api.github.com/repos/robertdebock/ansible-role-{{ role_name }}/contributors"
|
||||
register: github_contributors
|
||||
failed_when: no
|
||||
|
||||
- name: generate secure hash
|
||||
command: "/usr/bin/travis encrypt --pro robertdebock:{{ secure.slack_token }} --no-interactive"
|
||||
|
|
|
|||
|
|
@ -143,11 +143,13 @@ image="debian" tag="stable" tox
|
|||
|
||||
I'd like to thank everybody that made contributions to this repository. It motivates me, improves the code and is just fun to collaborate.
|
||||
|
||||
{% if github_contributors.json is defined and contributor.login is defined %}
|
||||
{% for contributor in github_contributors.json %}{% if contributor.login != "robertdebock" %}
|
||||
- [{{ contributor.login }}](https://github.com/{{ contributor.login }})
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
## [Author Information](#author-information)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue