Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Add a GitHub workflow for the chatops directory #204

Merged
merged 1 commit into from
Mar 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/chatops.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: ChatOps checks

on:
push:
branches:
- master
paths:
- "chatops_deployment/*"
- ".github/workflows/chatops.yaml"
pull_request:
paths:
- "chatops_deployment/*"
- ".github/workflows/chatops.yaml"

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Check Terraform
run: |
sudo snap install terraform --classic
cd chatops_deployment/terraform
terraform validate
cd ../..

- name: Check Ansible
run: |
pip install ansible-lint
ansible-lint chatops_deployment/ansible

- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: './chatops_deployment'