3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2025-02-21 15:28:08 +00:00

Upgraded to v8.7 (#136)

Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2021-07-17 11:59:23 -04:00 committed by GitHub
parent d825b1f709
commit cb4914b39a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 9 deletions

View file

@ -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)

View file

@ -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