Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 29 additions & 20 deletions actions/helm/generate-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,6 @@ runs:
core.setOutput("values-file", valuesFile);
}

// Generate markdownlint config file if not exists
let markdownlintConfigPath = join(workingDirectory, ".markdownlint.json");
if (!existsSync(markdownlintConfigPath)) {
markdownlintConfigPath = join(process.env.RUNNER_TEMP, `${Date.now()}.markdownlint.json`);

const defaultConfig = {
"default": true,
"line-length": false
};
writeFileSync(markdownlintConfigPath, JSON.stringify(defaultConfig, null, 2));
}
core.setOutput("markdownlint-config-path", markdownlintConfigPath);

// Generate textlint config file if not exists
let textlintConfigPath = join(workingDirectory, ".textlintrc");
if (!existsSync(textlintConfigPath)) {
Expand All @@ -109,6 +96,28 @@ runs:
}
core.setOutput("textlint-config-path", textlintConfigPath);

// Generate markdownlint config file if not exists
let markdownlintConfigPath = join(workingDirectory, ".markdownlint.json");
if (!existsSync(markdownlintConfigPath)) {
markdownlintConfigPath = join(process.env.RUNNER_TEMP, `${Date.now()}.markdownlint.json`);

const defaultConfig = {
"default": true,
"line-length": false,
"outputFormatters": [
[
"markdownlint-cli2-formatter-template",
{
"template": "::${errorSeverity:${errorSeverity}}${errorSeverity!error} " +
"file=${fileName},line=${lineNumber},${columnNumber:col=${columnNumber},}title=${ruleName}::${ruleDescription}"
}
]
]
};
writeFileSync(markdownlintConfigPath, JSON.stringify(defaultConfig, null, 2));
}
core.setOutput("markdownlint-config-path", markdownlintConfigPath);

- uses: hoverkraft-tech/ci-github-common/actions/checkout@5e8d0e6d1e76d8577a070db6d0128a91b1c9d5ad # 0.30.2

- uses: losisin/helm-docs-github-action@a57fae5676e4c55a228ea654a1bcaec8dd3cf5b5 # v1.6.2
Expand Down Expand Up @@ -153,13 +162,6 @@ runs:
CONFIG_PATH: ${{ steps.prepare-variables.outputs.textlint-config-path }}
run: npx textlint --cache-location "$CACHE_PATH" --fix --config "$CONFIG_PATH" "$(pwd)/**/*.md"

- name: Lint Fix markdown files
uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 # v21.0.0
with:
fix: true
config: ${{ steps.prepare-variables.outputs.markdownlint-config-path }}
globs: ${{ steps.prepare-variables.outputs.working-directory }}/**/*.md

- name: Cache prettier
id: cache-prettier
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
Expand All @@ -175,6 +177,13 @@ runs:
VALUES_FILE: ${{ steps.prepare-variables.outputs.values-file || '' }}
run: npx prettier --cache-location "$CACHE_PATH" --write "$(pwd)/**/*.md" $VALUES_FILE

- name: Lint Fix markdown files
uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 # v21.0.0
with:
fix: true
config: ${{ steps.prepare-variables.outputs.markdownlint-config-path }}
globs: ${{ steps.prepare-variables.outputs.working-directory }}/**/*.md

- uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
if: inputs.github-app-id
id: generate-token
Expand Down
Loading