diff --git a/HISTORY.md b/HISTORY.md index 93937d1a..d3c7eea4 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,14 @@ # Changelog +## [v1.2.7](https://github.com/tj-actions/auto-doc/tree/v1.2.7) (2022-01-03) + +[Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1.2.6...v1.2.7) + +**Merged pull requests:** + +- Added support for creating snapshots [\#277](https://github.com/tj-actions/auto-doc/pull/277) ([jackton1](https://github.com/jackton1)) +- Upgraded to v1.2.6 [\#276](https://github.com/tj-actions/auto-doc/pull/276) ([jackton1](https://github.com/jackton1)) + ## [v1.2.6](https://github.com/tj-actions/auto-doc/tree/v1.2.6) (2022-01-03) [Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1.2.5...v1.2.6) diff --git a/README.md b/README.md index e4c29cbf..fb73c5be 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Generate documentation from actions.yml like [this](#inputs) by simply adding `I steps: - uses: actions/checkout@v2 - name: Run auto-doc - uses: tj-actions/auto-doc@v1.2.6 + uses: tj-actions/auto-doc@v1.2.7 ``` ## Inputs @@ -77,7 +77,7 @@ jobs: fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - name: Run auto-doc - uses: tj-actions/auto-doc@v1.2.6 + uses: tj-actions/auto-doc@v1.2.7 - name: Verify Changed files uses: tj-actions/verify-changed-files@v8.6 diff --git a/action.yml b/action.yml index 463f7e7b..9b0afc84 100644 --- a/action.yml +++ b/action.yml @@ -23,7 +23,7 @@ runs: using: 'composite' steps: - run: | - curl -sf https://gobinaries.com/github.com/tj-actions/auto-doc@v1.2.6 | PREFIX=. sh + curl -sf https://gobinaries.com/github.com/tj-actions/auto-doc@v1.2.7 | PREFIX=. sh ./auto-doc --action="${{ inputs.action }}" --output="${{ inputs.output }}" --colMaxWidth="${{ inputs.col_max_width }}" --colMaxWords="${{ inputs.col_max_words }}" rm -f ./auto-doc shell: bash