mirror of
https://github.com/tj-actions/changed-files
synced 2025-01-29 03:34:50 +00:00
Upgraded from v1.0.1 -> v1.0.2 (#176)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
62a9200adf
commit
506cc732d4
2 changed files with 23 additions and 10 deletions
13
HISTORY.md
13
HISTORY.md
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [v1.0.2](https://github.com/tj-actions/changed-files/tree/v1.0.2) (2021-08-28)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.1...v1.0.2)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- \[BUG\] Error: xargs: unmatched single quote [\#169](https://github.com/tj-actions/changed-files/issues/169)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Fixed bug with parsing filenames that contain quotes [\#174](https://github.com/tj-actions/changed-files/pull/174) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v1.0.1 [\#173](https://github.com/tj-actions/changed-files/pull/173) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v1.0.1](https://github.com/tj-actions/changed-files/tree/v1.0.1) (2021-08-28)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.0...v1.0.1)
|
||||
|
|
20
README.md
20
README.md
|
@ -57,7 +57,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -116,11 +116,11 @@ jobs:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -142,7 +142,7 @@ jobs:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -166,14 +166,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.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
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.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
with:
|
||||
files_from_source_file: |
|
||||
test/changed-files-list.txt
|
||||
|
@ -182,13 +182,13 @@ jobs:
|
|||
|
||||
- name: Use a different commit SHA
|
||||
id: changed-files-custom-sha
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
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.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
with:
|
||||
base_sha: "2096ed0"
|
||||
|
||||
|
@ -200,7 +200,7 @@ jobs:
|
|||
|
||||
- name: Run changed-files with defaults on the dir1
|
||||
id: changed-files-for-subfolder
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
with:
|
||||
path: subfolder
|
||||
|
||||
|
@ -217,7 +217,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v1.0.1
|
||||
uses: tj-actions/changed-files@v1.0.2
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Reference in a new issue