-
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.
- Loading branch information
1 parent
78d4da0
commit 84f3f41
Showing
5 changed files
with
83 additions
and
83 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Update DNS for rui | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["AnsibleLint"] | ||
types: ["completed"] | ||
|
||
jobs: | ||
Dryrun: | ||
runs-on: self-hosted | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: "ansible-play -C --tags dnsmasq rui.yml" | ||
run: | | ||
ansible-playbook \ | ||
-i inventories -C \ | ||
--tags dnsmasq \ | ||
rui.yml |
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,61 @@ | ||
--- | ||
name: Lints | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
Yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run YAML Lint | ||
run: yamllint --strict --format github . | ||
|
||
AnsibleLint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Ansible-lint | ||
uses: ansible/ansible-lint@main | ||
|
||
Duplicate_Check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Add exec flag to dupcheck.sh | ||
run: "chmod +x ./dupcheck.sh" | ||
|
||
- name: NXDOMAIN_Duplicate_Check | ||
run: > | ||
"./dupcheck.sh" | ||
"inventories/host_vars/rui/ads_hosts/NXDOMAIN.yml" | ||
Ansible-rui-dns: | ||
needs: | ||
- Yamllint | ||
- AnsibleLint | ||
- Duplicate_Check | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare environments (apt) | ||
run: > | ||
ansible-galaxy install -r requirements.yml | ||
- name: "ansible-play -C --tags dnsmasq rui.yml" | ||
run: | | ||
ansible-playbook \ | ||
-i inventories -C \ | ||
--tags dnsmasq \ | ||
rui.yml |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.