mirror of
https://github.com/tj-actions/changed-files
synced 2025-02-20 11:01:56 +00:00
Upgraded to v7 (#94)
* Upgraded from v6 -> v7 * Update README.md Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
15b1769fc5
commit
9c41fbbf3a
2 changed files with 29 additions and 14 deletions
33
HISTORY.md
33
HISTORY.md
|
@ -1,13 +1,32 @@
|
|||
# Changelog
|
||||
|
||||
## [v7](https://github.com/tj-actions/changed-files/tree/v7) (2021-06-09)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v6...v7)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Request: Option to Output Whole File Path [\#88](https://github.com/tj-actions/changed-files/issues/88)
|
||||
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Clean up debug message [\#93](https://github.com/tj-actions/changed-files/pull/93) ([jackton1](https://github.com/jackton1))
|
||||
- Make the changes between two commits more explicit [\#92](https://github.com/tj-actions/changed-files/pull/92) ([monoxgas](https://github.com/monoxgas))
|
||||
- Updated README.md [\#91](https://github.com/tj-actions/changed-files/pull/91) ([jackton1](https://github.com/jackton1))
|
||||
- Punctuation [\#90](https://github.com/tj-actions/changed-files/pull/90) ([jsoref](https://github.com/jsoref))
|
||||
- Update README.md [\#89](https://github.com/tj-actions/changed-files/pull/89) ([jackton1](https://github.com/jackton1))
|
||||
- Update tj-actions/sync-release-version action to v8.7 [\#86](https://github.com/tj-actions/changed-files/pull/86) ([renovate[bot]](https://github.com/apps/renovate))
|
||||
- Upgraded to v6.3 [\#85](https://github.com/tj-actions/changed-files/pull/85) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v6](https://github.com/tj-actions/changed-files/tree/v6) (2021-05-26)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v6.3...v6)
|
||||
|
||||
## [v6.3](https://github.com/tj-actions/changed-files/tree/v6.3) (2021-05-26)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v6.2...v6.3)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Added usage link to warning message [\#84](https://github.com/tj-actions/changed-files/pull/84) ([jackton1](https://github.com/jackton1))
|
||||
|
@ -16,11 +35,7 @@
|
|||
|
||||
## [v6.2](https://github.com/tj-actions/changed-files/tree/v6.2) (2021-05-25)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v6...v6.2)
|
||||
|
||||
## [v6](https://github.com/tj-actions/changed-files/tree/v6) (2021-05-25)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v6.1...v6)
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v6.1...v6.2)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
|
|
10
README.md
10
README.md
|
@ -42,7 +42,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v6.3
|
||||
uses: tj-actions/changed-files@v7
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -95,11 +95,11 @@ jobs:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v6.3
|
||||
uses: tj-actions/changed-files@v7
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v6.3
|
||||
uses: tj-actions/changed-files@v7
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -121,7 +121,7 @@ jobs:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v6.3
|
||||
uses: tj-actions/changed-files@v7
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -150,7 +150,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v6.3
|
||||
uses: tj-actions/changed-files@v7
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue