mirror of
https://github.com/tj-actions/changed-files
synced 2025-01-17 19:17:45 +00:00
Upgraded to v4.4 (#38)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
300e935beb
commit
81657dc060
2 changed files with 16 additions and 4 deletions
12
HISTORY.md
12
HISTORY.md
|
@ -1,5 +1,17 @@
|
|||
# Changelog
|
||||
|
||||
## [v4.4](https://github.com/tj-actions/changed-files/tree/v4.4) (2021-05-01)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v4.3...v4.4)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Update .gitignore [\#36](https://github.com/tj-actions/changed-files/pull/36) ([jackton1](https://github.com/jackton1))
|
||||
- Add support for any changed file. [\#35](https://github.com/tj-actions/changed-files/pull/35) ([jackton1](https://github.com/jackton1))
|
||||
- Update .gitignore [\#34](https://github.com/tj-actions/changed-files/pull/34) ([jackton1](https://github.com/jackton1))
|
||||
- Renamed has\_changed to all\_changed [\#33](https://github.com/tj-actions/changed-files/pull/33) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v4.3 [\#32](https://github.com/tj-actions/changed-files/pull/32) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v4.3](https://github.com/tj-actions/changed-files/tree/v4.3) (2021-05-01)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v4.2...v4.3)
|
||||
|
|
|
@ -82,7 +82,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v4.3
|
||||
uses: tj-actions/changed-files@v4.4
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -100,11 +100,11 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v4.3
|
||||
uses: tj-actions/changed-files@v4.4
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v4.3
|
||||
uses: tj-actions/changed-files@v4.4
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -155,7 +155,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v4.3
|
||||
uses: tj-actions/changed-files@v4.4
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Reference in a new issue