diff --git a/HISTORY.md b/HISTORY.md index ab9c78ca..3f8f7482 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,31 @@ # Changelog +## [Unreleased](https://github.com/tj-actions/changed-files/tree/HEAD) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.3...HEAD) + +**Fixed bugs:** + +- \[BUG\] in entrypoint is referring to gihub.com repository [\#196](https://github.com/tj-actions/changed-files/issues/196) + +## [v1.1.3](https://github.com/tj-actions/changed-files/tree/v1.1.3) (2021-09-26) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.2...v1.1.3) + +**Closed issues:** + +- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) + +**Merged pull requests:** + +- Fixed bug setting the server URL for github enterprise server [\#198](https://github.com/tj-actions/changed-files/pull/198) ([jackton1](https://github.com/jackton1)) +- Update reviewdog/action-shellcheck action to v1.9 [\#197](https://github.com/tj-actions/changed-files/pull/197) ([renovate[bot]](https://github.com/apps/renovate)) +- Updated test [\#195](https://github.com/tj-actions/changed-files/pull/195) ([jackton1](https://github.com/jackton1)) +- Updated README.md [\#194](https://github.com/tj-actions/changed-files/pull/194) ([jackton1](https://github.com/jackton1)) +- Bump tj-actions/branch-names from 4.9 to 5 [\#193](https://github.com/tj-actions/changed-files/pull/193) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Updated README.md [\#192](https://github.com/tj-actions/changed-files/pull/192) ([jackton1](https://github.com/jackton1)) +- Upgraded to v1.1.2 [\#190](https://github.com/tj-actions/changed-files/pull/190) ([jackton1](https://github.com/jackton1)) + ## [v1.1.2](https://github.com/tj-actions/changed-files/tree/v1.1.2) (2021-09-05) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.1...v1.1.2) @@ -32,10 +58,6 @@ - \[Feature\] Specify sed delimiter or escaping forward slashes used in separator [\#180](https://github.com/tj-actions/changed-files/issues/180) -**Closed issues:** - -- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) - **Merged pull requests:** - Update pascalgn/automerge-action action to v0.14.3 [\#184](https://github.com/tj-actions/changed-files/pull/184) ([renovate[bot]](https://github.com/apps/renovate)) diff --git a/README.md b/README.md index faca32b4..f650c2d2 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.3 - name: List all modified files run: | @@ -118,11 +118,11 @@ jobs: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.3 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.3 with: separator: "," @@ -144,7 +144,7 @@ jobs: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.3 with: files: | my-file.txt @@ -182,14 +182,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.1.2 + uses: tj-actions/changed-files@v1.1.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.1.2 + uses: tj-actions/changed-files@v1.1.3 with: files_from_source_file: | test/changed-files-list.txt @@ -198,13 +198,13 @@ jobs: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.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.1.2 + uses: tj-actions/changed-files@v1.1.3 with: base_sha: "2096ed0" @@ -216,7 +216,7 @@ jobs: - name: Run changed-files with defaults on the dir1 id: changed-files-for-dir1 - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.3 with: path: dir1 @@ -238,7 +238,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.1.2 + uses: tj-actions/changed-files@v1.1.3 - name: Pre-commit uses: pre-commit/action@v2.0.0