Upgraded from v9.1 -> v9.2 (#154)

Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2021-08-06 07:13:33 -04:00 committed by GitHub
parent 75933dc40b
commit b5198a4764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 13 deletions

View File

@ -1,5 +1,27 @@
# Changelog
## [Unreleased](https://github.com/tj-actions/changed-files/tree/HEAD)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v9.2...HEAD)
**Fixed bugs:**
- \[BUG\] Dedupe the output list of changed files [\#151](https://github.com/tj-actions/changed-files/issues/151)
## [v9.2](https://github.com/tj-actions/changed-files/tree/v9.2) (2021-08-06)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v9.1...v9.2)
**Closed issues:**
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
**Merged pull requests:**
- Dedupe output file names. [\#153](https://github.com/tj-actions/changed-files/pull/153) ([jackton1](https://github.com/jackton1))
- Update tj-actions/branch-names action to v4.8 [\#152](https://github.com/tj-actions/changed-files/pull/152) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v9.1 [\#150](https://github.com/tj-actions/changed-files/pull/150) ([jackton1](https://github.com/jackton1))
## [v9.1](https://github.com/tj-actions/changed-files/tree/v9.1) (2021-07-30)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v9...v9.1)
@ -8,10 +30,6 @@
- \[Feature\] any\_changed doesn't capture changes due to deleting files [\#148](https://github.com/tj-actions/changed-files/issues/148)
**Closed issues:**
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
**Merged pull requests:**
- Detect deleted files via any\_changed output [\#149](https://github.com/tj-actions/changed-files/pull/149) ([jackton1](https://github.com/jackton1))

View File

@ -56,7 +56,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v9.1
uses: tj-actions/changed-files@v9.2
- name: List all modified files
run: |
@ -114,11 +114,11 @@ jobs:
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v9.1
uses: tj-actions/changed-files@v9.2
- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v9.1
uses: tj-actions/changed-files@v9.2
with:
separator: ","
@ -140,7 +140,7 @@ jobs:
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v9.1
uses: tj-actions/changed-files@v9.2
with:
files: |
my-file.txt
@ -163,14 +163,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@v9.1
uses: tj-actions/changed-files@v9.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@v9.1
uses: tj-actions/changed-files@v9.2
with:
files_from_source_file: |
test/changed-files-list.txt
@ -179,13 +179,13 @@ jobs:
- name: Use a different commit SHA
id: changed-files-custom-sha
uses: tj-actions/changed-files@v9.1
uses: tj-actions/changed-files@v9.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@v9.1
uses: tj-actions/changed-files@v9.2
with:
base_sha: "2096ed0"
@ -202,7 +202,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v9.1
uses: tj-actions/changed-files@v9.2
- name: Pre-commit
uses: pre-commit/action@v2.0.0