Skip to content

Commit

Permalink
Upgraded to v18.5 (#454)
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 Mar 29, 2022
1 parent 72aab29 commit 6c238a9
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 14 deletions.
28 changes: 26 additions & 2 deletions HISTORY.md
@@ -1,15 +1,39 @@
# Changelog

## [v18.4](https://github.com/tj-actions/changed-files/tree/v18.4) (2022-03-21)
## [v18.5](https://github.com/tj-actions/changed-files/tree/v18.5) (2022-03-29)

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

**Implemented enhancements:**

- \[Feature\] Get changes from all commits from a single push [\#447](https://github.com/tj-actions/changed-files/issues/447)

**Fixed bugs:**

- \[BUG\] Modified files treated as `Non Matching modified files` [\#450](https://github.com/tj-actions/changed-files/issues/450)
- \[BUG\] Not able to compare current commit with the specific commit of a branch\(in the Pull request event\) [\#441](https://github.com/tj-actions/changed-files/issues/441)

**Closed issues:**

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

**Merged pull requests:**

- fix: bug passing invalid patterns to grep [\#453](https://github.com/tj-actions/changed-files/pull/453) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update tj-actions/glob action to v7.12 [\#451](https://github.com/tj-actions/changed-files/pull/451) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update pascalgn/automerge-action action to v0.15.2 [\#449](https://github.com/tj-actions/changed-files/pull/449) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update pascalgn/automerge-action action to v0.14.4 [\#448](https://github.com/tj-actions/changed-files/pull/448) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update peter-evans/create-pull-request action to v4 [\#446](https://github.com/tj-actions/changed-files/pull/446) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update tj-actions/glob action to v7.11 [\#445](https://github.com/tj-actions/changed-files/pull/445) ([renovate[bot]](https://github.com/apps/renovate))
- Updated README.md [\#444](https://github.com/tj-actions/changed-files/pull/444) ([jackton1](https://github.com/jackton1))
- Upgraded to v18.4 [\#443](https://github.com/tj-actions/changed-files/pull/443) ([jackton1](https://github.com/jackton1))

## [v18.4](https://github.com/tj-actions/changed-files/tree/v18.4) (2022-03-21)

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

**Merged pull requests:**

- Bump tj-actions/remark from 2.3 to 3 [\#442](https://github.com/tj-actions/changed-files/pull/442) ([dependabot[bot]](https://github.com/apps/dependabot))
- chore\(deps\): update tj-actions/glob action to v7.10 [\#440](https://github.com/tj-actions/changed-files/pull/440) ([renovate[bot]](https://github.com/apps/renovate))
- Update README.md [\#439](https://github.com/tj-actions/changed-files/pull/439) ([jackton1](https://github.com/jackton1))
Expand Down
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5

- name: List all changed files
run: |
Expand Down Expand Up @@ -153,11 +153,11 @@ Support this project with a :star:

- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5

- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
with:
separator: ","

Expand All @@ -179,7 +179,7 @@ Support this project with a :star:
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
with:
files: |
my-file.txt
Expand Down Expand Up @@ -220,14 +220,14 @@ Support this project with a :star:
- 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@v18.4
uses: tj-actions/changed-files@v18.5
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@v18.4
uses: tj-actions/changed-files@v18.5
with:
files_from_source_file: |
test/changed-files-list.txt
Expand All @@ -236,13 +236,13 @@ Support this project with a :star:
- name: Use a different commit SHA
id: changed-files-custom-sha
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
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@v18.4
uses: tj-actions/changed-files@v18.5
with:
base_sha: "2096ed0"

Expand All @@ -254,7 +254,7 @@ Support this project with a :star:

- name: Run changed-files with defaults on the dir1
id: changed-files-for-dir1
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
with:
path: dir1

Expand All @@ -266,13 +266,13 @@ Support this project with a :star:
- name: Run changed-files using the last commit on the remote branch
id: changed-files-since-last-remote-commit
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
with:
since_last_remote_commit: "true"

- name: Run changed-files using the fork point of a pull request
id: changed-files-fork-point
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
with:
use_fork_point: "true"

Expand Down Expand Up @@ -326,7 +326,7 @@ With the switch from using grep's Extended regex to match files to the natively

- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v18.4
uses: tj-actions/changed-files@v18.5
with:
files: |
*.sh
Expand Down

0 comments on commit 6c238a9

Please sign in to comment.