diff --git a/HISTORY.md b/HISTORY.md index 98be2bca..b6232895 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,19 @@ # Changelog +## [v1.0.3](https://github.com/tj-actions/changed-files/tree/v1.0.3) (2021-09-03) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.2...v1.0.3) + +**Implemented enhancements:** + +- \[Feature\] Documentation for difference between all\_changed\_files and all\_modified\_files [\#177](https://github.com/tj-actions/changed-files/issues/177) + +**Merged pull requests:** + +- Update removing trailing separator [\#182](https://github.com/tj-actions/changed-files/pull/182) ([jackton1](https://github.com/jackton1)) +- Update README.md [\#178](https://github.com/tj-actions/changed-files/pull/178) ([jackton1](https://github.com/jackton1)) +- Upgraded to v1.0.2 [\#176](https://github.com/tj-actions/changed-files/pull/176) ([jackton1](https://github.com/jackton1)) + ## [v1.0.2](https://github.com/tj-actions/changed-files/tree/v1.0.2) (2021-08-28) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.1...v1.0.2) diff --git a/README.md b/README.md index 5d2315af..abe0c578 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.2 + uses: tj-actions/changed-files@v1.0.3 - 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.2 + uses: tj-actions/changed-files@v1.0.3 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v1.0.2 + uses: tj-actions/changed-files@v1.0.3 with: separator: "," @@ -142,7 +142,7 @@ jobs: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v1.0.2 + uses: tj-actions/changed-files@v1.0.3 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.2 + uses: tj-actions/changed-files@v1.0.3 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.2 + uses: tj-actions/changed-files@v1.0.3 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.2 + uses: tj-actions/changed-files@v1.0.3 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.2 + uses: tj-actions/changed-files@v1.0.3 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.2 + uses: tj-actions/changed-files@v1.0.3 with: path: subfolder @@ -217,7 +217,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.0.2 + uses: tj-actions/changed-files@v1.0.3 - name: Pre-commit uses: pre-commit/action@v2.0.0