period to test codegen PR #4
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: tfplugindocs generate | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/tfplugindocs-check.yml | |
- Makefile | |
- docs/** | |
- examples/** | |
- templates/** | |
- sonarqube/** | |
jobs: | |
tfplugindocs_generate: | |
name: tfplugindocs generate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | |
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo | |
- uses: actions/[email protected] | |
with: | |
go-version-file: tools/go.mod | |
- name: GOCACHE | |
run: | | |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV | |
- uses: actions/[email protected] | |
continue-on-error: true | |
timeout-minutes: 2 | |
with: | |
path: ${{ env.GOCACHE }} | |
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }} | |
- uses: actions/[email protected] | |
continue-on-error: true | |
timeout-minutes: 2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }} | |
- run: | | |
make tools | |
make docs | |
- uses: actions-js/[email protected] | |
name: Github commit and push | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.head_ref }} | |
message: "[bot] docs: tfplugindocs generate" |