Try using planetscale/ghcommit-action #30
Workflow file for this run
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
name: ci | ||
on: | ||
- pull_request | ||
jobs: | ||
ci: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# Give the default GITHUB_TOKEN write permission to commit and push the | ||
# added or changed files to the repository. | ||
contents: write | ||
steps: | ||
# Setup dependencies | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
# Run a couple of native Terraform checks | ||
- uses: hashicorp/setup-terraform@v3 | ||
- run: terraform init | ||
- run: terraform fmt -recursive -check | ||
- run: terraform validate | ||
# Checkov | ||
- uses: bridgecrewio/checkov-action@v12 | ||
with: | ||
directory: . | ||
quiet: true | ||
skip_check: CKV_TF_1,CKV_GCP_32,CKV_GCP_34,CKV2_GCP_18 | ||
framework: terraform | ||
# Terraform-docs | ||
- uses: terraform-docs/[email protected] | ||
continue-on-error: true # We need to commit the changes in the next step | ||
with: | ||
working-dir: . | ||
output-file: README.md | ||
output-method: inject | ||
fail-on-diff: true | ||
args: --lockfile=false | ||
git-push: 'false' | ||
# Push Terraform-docs changes | ||
- uses: planetscale/[email protected] | ||
with: | ||
commit_message: "terraform-docs: automated action" | ||
repo: ${{ github.repository }} | ||
branch: ${{ github.head_ref || github.ref_name }} | ||
file_pattern: 'README.md' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |