diff --git a/HISTORY.md b/HISTORY.md index e524b5ce..a58a29f6 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,33 @@ # Changelog +## [v1.0.1](https://github.com/tj-actions/changed-files/tree/v1.0.1) (2021-08-28) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.0...v1.0.1) + +**Implemented enhancements:** + +- \[Feature\] Add support for checkout path [\#167](https://github.com/tj-actions/changed-files/issues/167) + +**Fixed bugs:** + +- \[BUG\] Deleted files not detected [\#165](https://github.com/tj-actions/changed-files/issues/165) +- \[BUG\] changed-files unable to initialize git repository on custom container image [\#164](https://github.com/tj-actions/changed-files/issues/164) + +**Closed issues:** + +- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) + +**Merged pull requests:** + +- Updated README.md [\#172](https://github.com/tj-actions/changed-files/pull/172) ([jackton1](https://github.com/jackton1)) +- Updated README.md [\#171](https://github.com/tj-actions/changed-files/pull/171) ([jackton1](https://github.com/jackton1)) +- docs: add IvanPizhenko as a contributor for code, doc [\#170](https://github.com/tj-actions/changed-files/pull/170) ([allcontributors[bot]](https://github.com/apps/allcontributors)) +- Implement path parameter [\#168](https://github.com/tj-actions/changed-files/pull/168) ([IvanPizhenko](https://github.com/IvanPizhenko)) +- Update peter-evans/create-pull-request action to v3.10.1 [\#163](https://github.com/tj-actions/changed-files/pull/163) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/branch-names action to v4.9 [\#162](https://github.com/tj-actions/changed-files/pull/162) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/remark action to v1.7 [\#161](https://github.com/tj-actions/changed-files/pull/161) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgraded to v1.0.0 [\#160](https://github.com/tj-actions/changed-files/pull/160) ([jackton1](https://github.com/jackton1)) + ## [v1.0.0](https://github.com/tj-actions/changed-files/tree/v1.0.0) (2021-08-18) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v9.3...v1.0.0) @@ -31,10 +59,6 @@ [Full Changelog](https://github.com/tj-actions/changed-files/compare/v9.1...v9.2) -**Closed issues:** - -- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) - **Merged pull requests:** - Dedupe output file names. [\#153](https://github.com/tj-actions/changed-files/pull/153) ([jackton1](https://github.com/jackton1)) diff --git a/README.md b/README.md index 261f29c0..67b9f2c4 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 - name: List all modified files run: | @@ -116,11 +116,11 @@ jobs: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: separator: "," @@ -142,7 +142,7 @@ jobs: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: files: | my-file.txt @@ -166,14 +166,14 @@ jobs: - name: Use a source file or list of file(s) to populate to files input. id: changed-files-specific-source-file - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: files_from_source_file: | test/changed-files-list.txt - name: Use a source file or list of file(s) to populate to files input and optionally specify more files. id: changed-files-specific-source-file-and-specify-files - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: files_from_source_file: | test/changed-files-list.txt @@ -182,13 +182,13 @@ jobs: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: sha: ${{ github.event.pull_request.head.sha }} - name: Use a different base SHA id: changed-files-custom-base-sha - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: base_sha: "2096ed0" @@ -200,7 +200,7 @@ jobs: - name: Run changed-files with defaults on the dir1 id: changed-files-for-subfolder - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 with: path: subfolder @@ -217,7 +217,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.0.0 + uses: tj-actions/changed-files@v1.0.1 - name: Pre-commit uses: pre-commit/action@v2.0.0