3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2025-01-17 19:17:45 +00:00

Upgraded from v10.1 -> v11 (#222)

Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2021-10-23 10:07:37 -04:00 committed by GitHub
parent 3ee41f13e6
commit ac426cd439
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 13 deletions

View file

@ -1,8 +1,17 @@
# Changelog
## [v10.1](https://github.com/tj-actions/changed-files/tree/v10.1) (2021-10-12)
## [v11](https://github.com/tj-actions/changed-files/tree/v11) (2021-10-23)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v10...v10.1)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v10.1...v11)
**Implemented enhancements:**
- \[Feature\] fetch HEAD without tags [\#220](https://github.com/tj-actions/changed-files/issues/220)
**Fixed bugs:**
- \[BUG\] Spaces in file names are not handled correctly [\#216](https://github.com/tj-actions/changed-files/issues/216)
- \[BUG\] Usage of quotes around array items [\#208](https://github.com/tj-actions/changed-files/issues/208)
**Closed issues:**
@ -10,8 +19,27 @@
**Merged pull requests:**
- Updated README.md [\#221](https://github.com/tj-actions/changed-files/pull/221) ([jackton1](https://github.com/jackton1))
- Miscellaneous code cleanup [\#219](https://github.com/tj-actions/changed-files/pull/219) ([jackton1](https://github.com/jackton1))
- Fixed bug with separator for filenames that contain spaces [\#218](https://github.com/tj-actions/changed-files/pull/218) ([jackton1](https://github.com/jackton1))
- Updated README.md [\#215](https://github.com/tj-actions/changed-files/pull/215) ([jackton1](https://github.com/jackton1))
- Bump tj-actions/sync-release-version from 8.7 to 9 [\#214](https://github.com/tj-actions/changed-files/pull/214) ([dependabot[bot]](https://github.com/apps/dependabot))
- docs: add eltociear as a contributor for doc [\#213](https://github.com/tj-actions/changed-files/pull/213) ([allcontributors[bot]](https://github.com/apps/allcontributors))
- Update README.md [\#212](https://github.com/tj-actions/changed-files/pull/212) ([eltociear](https://github.com/eltociear))
- Fixed error with test [\#211](https://github.com/tj-actions/changed-files/pull/211) ([jackton1](https://github.com/jackton1))
- Update actions/checkout action to v2.3.5 [\#210](https://github.com/tj-actions/changed-files/pull/210) ([renovate[bot]](https://github.com/apps/renovate))
- Updated usage of quotes around array items. [\#209](https://github.com/tj-actions/changed-files/pull/209) ([jackton1](https://github.com/jackton1))
- Updated README.md [\#207](https://github.com/tj-actions/changed-files/pull/207) ([jackton1](https://github.com/jackton1))
- Upgraded to v10.1 [\#206](https://github.com/tj-actions/changed-files/pull/206) ([jackton1](https://github.com/jackton1))
## [v10.1](https://github.com/tj-actions/changed-files/tree/v10.1) (2021-10-12)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v10...v10.1)
**Merged pull requests:**
- docs: add talva-tr as a contributor for code [\#205](https://github.com/tj-actions/changed-files/pull/205) ([allcontributors[bot]](https://github.com/apps/allcontributors))
- Update entrypoint.sh [\#204](https://github.com/tj-actions/changed-files/pull/204) ([talva-tr](https://github.com/talva-tr))
- Add support for updating the current HEAD [\#204](https://github.com/tj-actions/changed-files/pull/204) ([talva-tr](https://github.com/talva-tr))
- Update tj-actions/verify-changed-files action to v8 [\#203](https://github.com/tj-actions/changed-files/pull/203) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v10 [\#202](https://github.com/tj-actions/changed-files/pull/202) ([jackton1](https://github.com/jackton1))

View file

@ -59,7 +59,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
- name: List all modified files
run: |
@ -121,11 +121,11 @@ jobs:
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
with:
separator: ","
@ -147,7 +147,7 @@ jobs:
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
with:
files: |
my-file.txt
@ -185,14 +185,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@v10.1
uses: tj-actions/changed-files@v11
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@v10.1
uses: tj-actions/changed-files@v11
with:
files_from_source_file: |
test/changed-files-list.txt
@ -201,13 +201,13 @@ jobs:
- name: Use a different commit SHA
id: changed-files-custom-sha
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
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@v10.1
uses: tj-actions/changed-files@v11
with:
base_sha: "2096ed0"
@ -219,7 +219,7 @@ jobs:
- name: Run changed-files with defaults on the dir1
id: changed-files-for-dir1
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
with:
path: dir1
@ -241,7 +241,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v10.1
uses: tj-actions/changed-files@v11
- name: Pre-commit
uses: pre-commit/action@v2.0.0