Skip to content

Commit

Permalink
Upgraded from v1.0.1 -> v1.0.2 (#176)
Browse files Browse the repository at this point in the history
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
  • Loading branch information
jackton1 and jackton1 committed Aug 28, 2021
1 parent 62a9200 commit 506cc73
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 10 deletions.
13 changes: 13 additions & 0 deletions 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)
Expand Down
20 changes: 10 additions & 10 deletions README.md
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: ","

Expand All @@ -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
Expand All @@ -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
Expand All @@ -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"

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

Expand All @@ -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
Expand Down

0 comments on commit 506cc73

Please sign in to comment.