Skip to content

Update terraform-docs to v0.17.0 #277

Update terraform-docs to v0.17.0

Update terraform-docs to v0.17.0 #277

Workflow file for this run

name: validate
on:
push:
branches:
- main
- release-*
pull_request:
jobs:
shellcheck:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: "."
readme:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install gomplate
run: |
sudo curl -o /usr/local/bin/gomplate -sSL https://github.com/hairyhenderson/gomplate/releases/download/v3.8.0/gomplate_linux-amd64
sudo chmod 755 /usr/local/bin/gomplate
- name: Check README content based on action.yml
run: |
./scripts/update-readme.sh
if [ $(git status --porcelain | grep -c 'M README.md') -eq 1 ]; then
exit 1
fi