chore(secret_manager): remove template and status suffixes in field #3640
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: Documentation Workflows | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
ensure-docs-generated: | |
name: Ensure docs are generated | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate code | |
run: go run ./cmd/scw-doc-gen | |
env: | |
# We need this to enable autocomplete documentation generation default | |
SHELL: /bin/bash | |
- name: Exit 1 if not empty | |
run: git diff --exit-code | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gaurav-nelson/[email protected] | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: '.markdownlinkcheck.json' | |
folder-path: 'docs' | |
file-extension: '.md' |