From cb4914b39afbbe627e3cbfccead42685fdd1c8db Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 17 Jul 2021 11:59:23 -0400 Subject: [PATCH] Upgraded to v8.7 (#136) Co-authored-by: jackton1 --- HISTORY.md | 13 +++++++++++++ README.md | 18 +++++++++--------- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 39b51bbe..90f71d25 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,18 @@ # Changelog +## [v8.7](https://github.com/tj-actions/changed-files/tree/v8.7) (2021-07-17) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.6...v8.7) + +**Implemented enhancements:** + +- \[Feature\] Get Changed files since last successful Action run [\#131](https://github.com/tj-actions/changed-files/issues/131) + +**Merged pull requests:** + +- Added support for a custom base sha. [\#135](https://github.com/tj-actions/changed-files/pull/135) ([jackton1](https://github.com/jackton1)) +- Upgraded to v8.6 [\#134](https://github.com/tj-actions/changed-files/pull/134) ([jackton1](https://github.com/jackton1)) + ## [v8.6](https://github.com/tj-actions/changed-files/tree/v8.6) (2021-07-17) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.5...v8.6) diff --git a/README.md b/README.md index 1ffb29f4..d8657655 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v8.6 + uses: tj-actions/changed-files@v8.7 - name: List all modified files run: | @@ -111,11 +111,11 @@ jobs: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v8.6 + uses: tj-actions/changed-files@v8.7 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v8.6 + uses: tj-actions/changed-files@v8.7 with: separator: "," @@ -137,7 +137,7 @@ jobs: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v8.6 + uses: tj-actions/changed-files@v8.7 with: files: | my-file.txt @@ -155,14 +155,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@v8.6 + uses: tj-actions/changed-files@v8.7 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@v8.6 + uses: tj-actions/changed-files@v8.7 with: files_from_source_file: | test/changed-files-list.txt @@ -171,13 +171,13 @@ jobs: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v8.6 + uses: tj-actions/changed-files@v8.7 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@v8.6 + uses: tj-actions/changed-files@v8.7 with: base_sha: "2096ed0" @@ -194,7 +194,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v8.6 + uses: tj-actions/changed-files@v8.7 - name: Pre-commit uses: pre-commit/action@v2.0.0