refactor: remove unused components and next steps section from index.mdx #97
Workflow file for this run
This file contains hidden or 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: Generate Terraform Docs | |
| on: | |
| pull_request_target: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, edited] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| docs: | |
| name: Generate Terraform Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout base repo (safe) | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.base.ref }} | |
| token: ${{ secrets.WRITE_PAT }} | |
| - name: Generate terraform docs (from base only) | |
| uses: terraform-docs/[email protected] | |
| with: | |
| working-dir: . | |
| output-file: README.md | |
| output-method: replace | |
| git-push: "true" |