Skip to content

Commit

Permalink
Upgraded to v9 (#146)
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 Jul 24, 2021
1 parent 7abdbc9 commit fba57fd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 13 deletions.
23 changes: 19 additions & 4 deletions HISTORY.md
@@ -1,5 +1,24 @@
# Changelog

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

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.9...v9)

**Fixed bugs:**

- \[BUG\] \<any\_changed doesn't capture changes due to renaming files\> [\#144](https://github.com/tj-actions/changed-files/issues/144)

**Closed issues:**

- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)

**Merged pull requests:**

- Update `any_changed` to include renamed files. [\#145](https://github.com/tj-actions/changed-files/pull/145) ([jackton1](https://github.com/jackton1))
- Update codacy/codacy-analysis-cli-action action to v4 [\#143](https://github.com/tj-actions/changed-files/pull/143) ([renovate[bot]](https://github.com/apps/renovate))
- Update codacy/codacy-analysis-cli-action action to v3 [\#142](https://github.com/tj-actions/changed-files/pull/142) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v8.9 [\#140](https://github.com/tj-actions/changed-files/pull/140) ([jackton1](https://github.com/jackton1))

## [v8.9](https://github.com/tj-actions/changed-files/tree/v8.9) (2021-07-18)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.8...v8.9)
Expand Down Expand Up @@ -68,10 +87,6 @@

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.3...v8.4)

**Closed issues:**

- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)

**Merged pull requests:**

- Update reviewdog/action-shellcheck action to v1.6 [\#118](https://github.com/tj-actions/changed-files/pull/118) ([renovate[bot]](https://github.com/apps/renovate))
Expand Down
18 changes: 9 additions & 9 deletions README.md
Expand Up @@ -55,7 +55,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v8.9
uses: tj-actions/changed-files@v9

- name: List all modified files
run: |
Expand Down Expand Up @@ -113,11 +113,11 @@ jobs:

- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v8.9
uses: tj-actions/changed-files@v9

- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v8.9
uses: tj-actions/changed-files@v9
with:
separator: ","

Expand All @@ -139,7 +139,7 @@ jobs:
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v8.9
uses: tj-actions/changed-files@v9
with:
files: |
my-file.txt
Expand All @@ -162,14 +162,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@v8.9
uses: tj-actions/changed-files@v9
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@v8.9
uses: tj-actions/changed-files@v9
with:
files_from_source_file: |
test/changed-files-list.txt
Expand All @@ -178,13 +178,13 @@ jobs:
- name: Use a different commit SHA
id: changed-files-custom-sha
uses: tj-actions/changed-files@v8.9
uses: tj-actions/changed-files@v9
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@v8.9
uses: tj-actions/changed-files@v9
with:
base_sha: "2096ed0"

Expand All @@ -201,7 +201,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v8.9
uses: tj-actions/changed-files@v9

- name: Pre-commit
uses: pre-commit/action@v2.0.0
Expand Down

0 comments on commit fba57fd

Please sign in to comment.