mirror of
https://github.com/tj-actions/changed-files
synced 2025-02-21 05:28:14 +00:00
Upgraded to v6 (#64)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
a35dac8406
commit
fb196bcc0b
2 changed files with 23 additions and 9 deletions
22
HISTORY.md
22
HISTORY.md
|
@ -1,13 +1,27 @@
|
|||
# Changelog
|
||||
|
||||
## [v6](https://github.com/tj-actions/changed-files/tree/v6) (2021-05-14)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v5.3...v6)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Improve test coverage [\#54](https://github.com/tj-actions/changed-files/issues/54)
|
||||
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Bump peter-evans/create-pull-request from 3.9.1 to 3.9.2 [\#63](https://github.com/tj-actions/changed-files/pull/63) ([dependabot[bot]](https://github.com/apps/dependabot))
|
||||
- Deprecate all\_changed output. [\#62](https://github.com/tj-actions/changed-files/pull/62) ([jackton1](https://github.com/jackton1))
|
||||
- Bump peter-evans/create-pull-request from 3 to 3.9.1 [\#61](https://github.com/tj-actions/changed-files/pull/61) ([dependabot[bot]](https://github.com/apps/dependabot))
|
||||
- Bump actions/checkout from 2 to 2.3.4 [\#60](https://github.com/tj-actions/changed-files/pull/60) ([dependabot[bot]](https://github.com/apps/dependabot))
|
||||
- Fixed typo [\#58](https://github.com/tj-actions/changed-files/pull/58) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v5.3 [\#57](https://github.com/tj-actions/changed-files/pull/57) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v5.3](https://github.com/tj-actions/changed-files/tree/v5.3) (2021-05-08)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v5.2...v5.3)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Add warning message when the head sha is empty [\#56](https://github.com/tj-actions/changed-files/pull/56) ([jackton1](https://github.com/jackton1))
|
||||
|
|
10
README.md
10
README.md
|
@ -47,7 +47,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v5.3
|
||||
uses: tj-actions/changed-files@v6
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -104,11 +104,11 @@ jobs:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v5.3
|
||||
uses: tj-actions/changed-files@v6
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v5.3
|
||||
uses: tj-actions/changed-files@v6
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -130,7 +130,7 @@ jobs:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v5.3
|
||||
uses: tj-actions/changed-files@v6
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -159,7 +159,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v5.3
|
||||
uses: tj-actions/changed-files@v6
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue