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

Upgraded to v18.5 (#454)

Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2022-03-29 11:08:51 -04:00 committed by GitHub
parent 72aab29255
commit 6c238a972b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 14 deletions

View file

@ -1,8 +1,17 @@
# 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:**
@ -10,6 +19,21 @@
**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))

View file

@ -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: |
@ -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: ","
@ -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
@ -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
@ -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"
@ -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
@ -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"
@ -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