mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
update submodules and some actions that will fail
This commit is contained in:
parent
c615e8a83e
commit
9b5a2a1371
5 changed files with 62 additions and 26 deletions
18
.github/workflows/ansible-linting-check.yml
vendored
Normal file
18
.github/workflows/ansible-linting-check.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
name: Ansible Lint check
|
||||||
|
|
||||||
|
# yamllint disable-line rule:truthy
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Lint Ansible Playbook
|
||||||
|
uses: ansible/ansible-lint-action@master
|
||||||
|
with:
|
||||||
|
targets: "site.yml"
|
22
.github/workflows/yamllint.yaml
vendored
Normal file
22
.github/workflows/yamllint.yaml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
name: 'Yamllint GitHub Actions'
|
||||||
|
|
||||||
|
# yamllint disable-line rule:truthy
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
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'
|
||||||
|
yamllint_strict: false
|
||||||
|
yamllint_comment: true
|
||||||
|
# env:
|
||||||
|
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }
|
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -33,7 +33,7 @@
|
||||||
url = https://github.com/roles-ansible/role_akku_warning.git
|
url = https://github.com/roles-ansible/role_akku_warning.git
|
||||||
[submodule "roles/install-firefox"]
|
[submodule "roles/install-firefox"]
|
||||||
path = roles/install-firefox
|
path = roles/install-firefox
|
||||||
url = https://github.com/chaos-bodensee/role-firefox-installation.git
|
url = https://github.com/roles-ansible/ansible_role_install_firefox.git
|
||||||
[submodule "roles/xrandr"]
|
[submodule "roles/xrandr"]
|
||||||
path = roles/xrandr
|
path = roles/xrandr
|
||||||
url = https://github.com/chaos-bodensee/role-xrandr.git
|
url = https://github.com/chaos-bodensee/role-xrandr.git
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ee9709d0fcd563e54dd928655f5d0f0c285d5b31
|
Subproject commit 31fbb5b16c58e057b966c9f2371c50ab3e9160c8
|
6
site.yml
6
site.yml
|
@ -1,12 +1,8 @@
|
||||||
---
|
---
|
||||||
- name: check if ansible is not to old
|
- name: check if ansible is not to old
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
tags:
|
|
||||||
- default
|
|
||||||
- always
|
|
||||||
roles:
|
roles:
|
||||||
- ansible_version
|
- {role: ansible_version, tags: always, gather_facts: false}
|
||||||
gather_facts: no
|
|
||||||
|
|
||||||
- name: run base setup roles
|
- name: run base setup roles
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
|
|
Loading…
Reference in a new issue