github-action-readme-generator 1.12.2 → 1.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.12.3](https://github.com/bitflight-devops/github-action-readme-generator/compare/v1.12.2...v1.12.3) (2026-08-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **cli:** parse sections as an array ([#665](https://github.com/bitflight-devops/github-action-readme-generator/issues/665)) ([9d6c0a2](https://github.com/bitflight-devops/github-action-readme-generator/commit/9d6c0a23a7f246f1e165df859e3c2c58d5772664))
7
+
1
8
  ## [1.12.2](https://github.com/bitflight-devops/github-action-readme-generator/compare/v1.12.1...v1.12.2) (2026-08-15)
2
9
 
3
10
 
package/README.md CHANGED
@@ -177,7 +177,7 @@ This configuration will automatically regenerate your README whenever `action.ym
177
177
  <!-- start usage -->
178
178
 
179
179
  ```yaml
180
- - uses: bitflight-devops/github-action-readme-generator@v1.12.1
180
+ - uses: bitflight-devops/github-action-readme-generator@v1.12.2
181
181
  with:
182
182
  # Description: The absolute or relative path to the `action.yml` file to read in
183
183
  # from.
package/dist/bin/index.js CHANGED
@@ -171659,6 +171659,16 @@ argvOptions["debug:config"] = {
171659
171659
  type: "boolean"
171660
171660
  };
171661
171661
  /**
171662
+ * README sections option configuration.
171663
+ * Declaring this as an array keeps a single `--sections=usage` value consistent
171664
+ * with the array shape used by `.ghadocs.json` and repeated CLI arguments.
171665
+ */
171666
+ argvOptions.sections = {
171667
+ alias: "sections",
171668
+ describe: "Only generate the named README section (repeat for multiple sections)",
171669
+ type: "array"
171670
+ };
171671
+ /**
171662
171672
  * Configuration inputs from the github action don't
171663
171673
  * all match the input names when running on cli.
171664
171674
  * This maps the action inputs to the cli.
package/dist/mjs/index.js CHANGED
@@ -1111,6 +1111,16 @@ argvOptions["debug:config"] = {
1111
1111
  type: "boolean"
1112
1112
  };
1113
1113
  /**
1114
+ * README sections option configuration.
1115
+ * Declaring this as an array keeps a single `--sections=usage` value consistent
1116
+ * with the array shape used by `.ghadocs.json` and repeated CLI arguments.
1117
+ */
1118
+ argvOptions.sections = {
1119
+ alias: "sections",
1120
+ describe: "Only generate the named README section (repeat for multiple sections)",
1121
+ type: "array"
1122
+ };
1123
+ /**
1114
1124
  * Configuration inputs from the github action don't
1115
1125
  * all match the input names when running on cli.
1116
1126
  * This maps the action inputs to the cli.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "github-action-readme-generator",
3
3
  "displayName": "bitflight-devops/github-action-readme-generator",
4
- "version": "1.12.2",
4
+ "version": "1.12.3",
5
5
  "description": "The docs generator for GitHub Actions. Auto-syncs action.yml to README.md with 8 sections: inputs, outputs, usage, badges, branding & more. Works as CLI or GitHub Action.",
6
6
  "keywords": [
7
7
  "github-actions",