diff --git a/HISTORY.md b/HISTORY.md index 6e3b589243b..364cbe68abb 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,16 +1,24 @@ # Changelog -## [v12](https://github.com/tj-actions/changed-files/tree/v12) (2021-12-14) +## [v2.0.0](https://github.com/tj-actions/changed-files/tree/v2.0.0) (2021-12-17) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12...v2.0.0) + +**Fixed bugs:** + +- \[BUG\] Files input doesn't work when running with `act` [\#251](https://github.com/tj-actions/changed-files/issues/251) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.4...v12) +**Closed issues:** + +- Breaking changes in patch updates? [\#288](https://github.com/tj-actions/changed-files/issues/288) **Merged pull requests:** -- Upgraded to v1.1.4 [\#286](https://github.com/tj-actions/changed-files/pull/286) ([jackton1](https://github.com/jackton1)) +- Upgraded to v12 [\#287](https://github.com/tj-actions/changed-files/pull/287) ([jackton1](https://github.com/jackton1)) -## [v1.1.4](https://github.com/tj-actions/changed-files/tree/v1.1.4) (2021-12-14) +## [v12](https://github.com/tj-actions/changed-files/tree/v12) (2021-12-14) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v11.9...v1.1.4) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v11.9...v12) **Implemented enhancements:** @@ -26,6 +34,7 @@ **Merged pull requests:** +- Upgraded to v1.1.4 [\#286](https://github.com/tj-actions/changed-files/pull/286) ([jackton1](https://github.com/jackton1)) - \[PR 2\]: Added support for listing all\_modified\_files. [\#285](https://github.com/tj-actions/changed-files/pull/285) ([jackton1](https://github.com/jackton1)) - Update peter-evans/create-pull-request action to v3.12.0 [\#284](https://github.com/tj-actions/changed-files/pull/284) ([renovate[bot]](https://github.com/apps/renovate)) - \[PR 1\]: Renamed all\_modified\_files to all\_changed\_files [\#283](https://github.com/tj-actions/changed-files/pull/283) ([jackton1](https://github.com/jackton1)) diff --git a/README.md b/README.md index 7d2fcb21e57..95d5d5d7e78 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 - name: List all changed files run: | @@ -150,11 +150,11 @@ Support this project with a :star: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 with: separator: "," @@ -176,7 +176,7 @@ Support this project with a :star: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 with: files: | my-file.txt @@ -214,14 +214,14 @@ Support this project with a :star: - 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@v12 + uses: tj-actions/changed-files@v2.0.0 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@v12 + uses: tj-actions/changed-files@v2.0.0 with: files_from_source_file: | test/changed-files-list.txt @@ -230,13 +230,13 @@ Support this project with a :star: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 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@v12 + uses: tj-actions/changed-files@v2.0.0 with: base_sha: "2096ed0" @@ -248,7 +248,7 @@ Support this project with a :star: - name: Run changed-files with defaults on the dir1 id: changed-files-for-dir1 - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 with: path: dir1 @@ -260,7 +260,7 @@ Support this project with a :star: - name: Run changed-files using the last commit on the remote branch id: changed-files-since-last-remote-commit - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 with: since_last_remote_commit: 'true' @@ -277,7 +277,7 @@ Support this project with a :star: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v12 + uses: tj-actions/changed-files@v2.0.0 - name: Pre-commit uses: pre-commit/action@v2.0.0