-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from roles-ansible/update
Update actions and partial add new ansible naming scheme
- Loading branch information
Showing
15 changed files
with
119 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
# These are supported funding model platforms | ||
|
||
github: [do1jlr] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Ansible Lint check | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
push: | ||
branches: '*' | ||
pull_request: | ||
branches: '*' | ||
schedule: | ||
- cron: '42 6 * */1 *' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Lint Ansible Playbook | ||
uses: ansible/ansible-lint-action@master | ||
with: | ||
targets: "." | ||
# [required] | ||
# Paths to ansible files (i.e., playbooks, tasks, handlers etc..) | ||
args: "" | ||
# [optional] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Galaxy release | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
push: | ||
branches: ['main'] | ||
release: | ||
types: ['created'] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: galaxy | ||
uses: robertdebock/[email protected] | ||
with: | ||
galaxy_api_key: ${{ secrets.galaxy_api_key }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: 'Yamllint GitHub Actions' | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
push: | ||
branches: '*' | ||
pull_request: | ||
branches: '*' | ||
schedule: | ||
- cron: '23 6 * */1 *' | ||
|
||
jobs: | ||
yamllint: | ||
name: 'Yamllint' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout' | ||
uses: actions/checkout@master | ||
- name: 'Yamllint' | ||
uses: karancode/yamllint-github-action@master | ||
with: | ||
yamllint_file_or_dir: '.' | ||
yamllint_config_filepath: './.yamllint' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
# 150 chars should be enough, but don't fail if a line is longer | ||
line-length: | ||
max: 150 | ||
level: warning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,46 @@ | ||
--- | ||
- name: Create directory for versionscheck | ||
become: true | ||
file: | ||
ansible.builtin.file: | ||
path: '/etc/.ansible-version' | ||
state: directory | ||
mode: 0755 | ||
when: submodules_versioncheck|bool | ||
|
||
- name: check playbook version | ||
become: true | ||
slurp: | ||
ansible.builtin.slurp: | ||
src: "/etc/.ansible-version/{{ playbook_version_path }}" | ||
register: playbook_version | ||
when: submodules_versioncheck|bool | ||
ignore_errors: yes | ||
ignore_errors: true | ||
failed_when: false | ||
|
||
- name: Print remote role version | ||
debug: | ||
ansible.builtin.debug: | ||
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}" | ||
when: submodules_versioncheck|bool | ||
|
||
- name: Print locale role version | ||
debug: | ||
ansible.builtin.debug: | ||
msg: "Local role version: '{{ playbook_version_number|string }}'." | ||
when: submodules_versioncheck|bool | ||
|
||
- name: Check if your version is outdated | ||
fail: | ||
ansible.builtin.fail: | ||
msg: "Your ansible module has the version '{{ playbook_version_number }}' and is outdated. You need to update it!" | ||
when: | ||
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck|bool | ||
|
||
- name: check if '/etc/ansible-version/' is empty | ||
find: | ||
ansible.builtin.find: | ||
paths: '/etc/ansible-version/' | ||
register: filesFound | ||
|
||
- name: write new version to remote disk | ||
become: true | ||
copy: | ||
ansible.builtin.copy: | ||
content: "{{ playbook_version_number }}" | ||
dest: "/etc/.ansible-version/{{ playbook_version_path }}" | ||
mode: '0644' | ||
when: submodules_versioncheck|bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters