Skip to content

Commit

Permalink
Upgraded from v9.1 -> v9.2 (#154)
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 6, 2021
1 parent 75933dc commit b5198a4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
26 changes: 22 additions & 4 deletions HISTORY.md
@@ -1,19 +1,37 @@
# Changelog

## [v9.1](https://github.com/tj-actions/changed-files/tree/v9.1) (2021-07-30)
## [Unreleased](https://github.com/tj-actions/changed-files/tree/HEAD)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v9...v9.1)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v9.2...HEAD)

**Implemented enhancements:**
**Fixed bugs:**

- \[Feature\] any\_changed doesn't capture changes due to deleting files [\#148](https://github.com/tj-actions/changed-files/issues/148)
- \[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)

**Implemented enhancements:**

- \[Feature\] any\_changed doesn't capture changes due to deleting files [\#148](https://github.com/tj-actions/changed-files/issues/148)

**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))
- Update reviewdog/action-shellcheck action to v1.7 [\#147](https://github.com/tj-actions/changed-files/pull/147) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v9 [\#146](https://github.com/tj-actions/changed-files/pull/146) ([jackton1](https://github.com/jackton1))
Expand Down
18 changes: 9 additions & 9 deletions README.md
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: ","

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

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

0 comments on commit b5198a4

Please sign in to comment.