mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-16 19:27:39 +00:00
Upgraded to v8.8 (#138)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
8c6f276ea5
commit
1b6483d0e7
2 changed files with 22 additions and 9 deletions
13
HISTORY.md
13
HISTORY.md
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [v8.8](https://github.com/tj-actions/changed-files/tree/v8.8) (2021-07-17)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.7...v8.8)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- \[Feature\] Ability to run a workflow if and only if certain file/directory changes [\#124](https://github.com/tj-actions/changed-files/issues/124)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Added support for detecting non specific file changes. [\#137](https://github.com/tj-actions/changed-files/pull/137) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v8.7 [\#136](https://github.com/tj-actions/changed-files/pull/136) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [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)
|
||||
|
|
18
README.md
18
README.md
|
@ -55,7 +55,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v8.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -113,11 +113,11 @@ jobs:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v8.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v8.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -139,7 +139,7 @@ jobs:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v8.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -157,14 +157,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.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
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.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
with:
|
||||
files_from_source_file: |
|
||||
test/changed-files-list.txt
|
||||
|
@ -173,13 +173,13 @@ jobs:
|
|||
|
||||
- name: Use a different commit SHA
|
||||
id: changed-files-custom-sha
|
||||
uses: tj-actions/changed-files@v8.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
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.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
with:
|
||||
base_sha: "2096ed0"
|
||||
|
||||
|
@ -196,7 +196,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v8.7
|
||||
uses: tj-actions/changed-files@v8.8
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Reference in a new issue