diff --git a/.github/ISSUE_TEMPLATE/02-feature_request.yml b/.github/ISSUE_TEMPLATE/02-feature_request.yml index e5ca500..b35bdc7 100644 --- a/.github/ISSUE_TEMPLATE/02-feature_request.yml +++ b/.github/ISSUE_TEMPLATE/02-feature_request.yml @@ -1,13 +1,13 @@ name: Feature request description: Request a new feature -labels: [enhancement request] +labels: [enhancement] body: - type: markdown attributes: value: | Thank you for submitting an idea ! - type: dropdown - id: application_or_command + id: command attributes: label: Which command is this feature request for? options: diff --git a/.github/labeler.yml b/.github/labeler.yml index f1209c7..1ef9ad0 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -27,3 +27,9 @@ command:start: - any-glob-to-any-file: - src/command/commands/start.ts - src/action/actions/start.ts + +documentation: + - changed-files: + - any-glob-to-any-file: + - docs/* + - docs/**/* diff --git a/.github/workflows/push-docs.yml b/.github/workflows/push-docs.yml index 2cc0341..73e33a2 100644 --- a/.github/workflows/push-docs.yml +++ b/.github/workflows/push-docs.yml @@ -1,9 +1,11 @@ -name: synchronize-docs +name: Synchronize Docs on: push: branches: - main + paths: + - "docs/**" workflow_dispatch: jobs: diff --git a/README.md b/README.md index 21a6559..7963694 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,17 @@
## About @@ -31,6 +33,7 @@ And then create a new project : ```bash nf new ``` + ## Documentation The documentation for nanoforge cli can be found at : [https://nanoforge-dev.github.io/docs/cli](https://nanoforge-dev.github.io/docs/cli) diff --git a/docs/build-config.schema.json b/docs/build-config.schema.json index 1e78b43..2291539 100644 --- a/docs/build-config.schema.json +++ b/docs/build-config.schema.json @@ -11,7 +11,7 @@ "outDir": { "type": "string", "description": "the directory where to put the built files" - }, + } }, "required": ["entryFile", "outDir"] } diff --git a/docs/client-config.schema.json b/docs/client-config.schema.json index c3dd9b7..076275d 100644 --- a/docs/client-config.schema.json +++ b/docs/client-config.schema.json @@ -13,7 +13,7 @@ }, "build": { "$ref": "https://nanoforge-dev.github.io/docs/cli/build-config.schema.json" - }, + }, "runtime": { "$ref": "https://nanoforge-dev.github.io/docs/cli/run-config.schema.json" } diff --git a/docs/config.schema.json b/docs/config.schema.json index 6c8914f..38402b2 100644 --- a/docs/config.schema.json +++ b/docs/config.schema.json @@ -16,7 +16,7 @@ }, "client": { "$ref": "https://nanoforge-dev.github.io/docs/cli/client-config.schema.json" - }, + }, "server": { "$ref": "https://nanoforge-dev.github.io/docs/cli/server-config.schema.json" } diff --git a/docs/run-config.schema.json b/docs/run-config.schema.json index f5f306d..cf18cfd 100644 --- a/docs/run-config.schema.json +++ b/docs/run-config.schema.json @@ -7,7 +7,7 @@ "dir": { "type": "string", "description": "the directory to use" - }, + } }, "required": ["dir"] } diff --git a/docs/server-config.schema.json b/docs/server-config.schema.json index 73bf88f..03f5886 100644 --- a/docs/server-config.schema.json +++ b/docs/server-config.schema.json @@ -13,7 +13,7 @@ }, "build": { "$ref": "https://nanoforge-dev.github.io/docs/cli/build-config.schema.json" - }, + }, "runtime": { "$ref": "https://nanoforge-dev.github.io/docs/cli/run-config.schema.json" }