Upgraded to v8.6 (#134)

Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2021-07-17 11:03:41 -04:00 committed by GitHub
parent 20681a5b4f
commit 2096ed00f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 6 deletions

View File

@ -1,5 +1,20 @@
# Changelog
## [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)
**Implemented enhancements:**
- \[Feature\] Get specific changed files reading a file [\#130](https://github.com/tj-actions/changed-files/issues/130)
- \[Feature\] Rename `files` -\> `paths` [\#125](https://github.com/tj-actions/changed-files/issues/125)
**Merged pull requests:**
- Updated README.md [\#133](https://github.com/tj-actions/changed-files/pull/133) ([jackton1](https://github.com/jackton1))
- Added support for retrieving the files input using a source file. [\#132](https://github.com/tj-actions/changed-files/pull/132) ([jackton1](https://github.com/jackton1))
- Upgraded to v8.5 [\#129](https://github.com/tj-actions/changed-files/pull/129) ([jackton1](https://github.com/jackton1))
## [v8.5](https://github.com/tj-actions/changed-files/tree/v8.5) (2021-07-14)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.4...v8.5)

View File

@ -55,7 +55,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v8.5
uses: tj-actions/changed-files@v8.6
- name: List all modified files
run: |
@ -110,11 +110,11 @@ jobs:
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v8.5
uses: tj-actions/changed-files@v8.6
- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v8.5
uses: tj-actions/changed-files@v8.6
with:
separator: ","
@ -136,7 +136,7 @@ jobs:
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v8.5
uses: tj-actions/changed-files@v8.6
with:
files: |
my-file.txt
@ -170,7 +170,7 @@ jobs:
- name: Use a different commit SHA
id: changed-files-comma
uses: tj-actions/changed-files@v8.5
uses: tj-actions/changed-files@v8.6
with:
sha: ${{ github.event.pull_request.head.sha }}
@ -187,7 +187,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v8.5
uses: tj-actions/changed-files@v8.6
- name: Pre-commit
uses: pre-commit/action@v2.0.0