mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-16 19:27:39 +00:00
Upgraded to v8.3 (#116)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
d679de9200
commit
9af8ec1a72
2 changed files with 14 additions and 5 deletions
|
@ -1,5 +1,14 @@
|
|||
# Changelog
|
||||
|
||||
## [v8.3](https://github.com/tj-actions/changed-files/tree/v8.3) (2021-06-25)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.2...v8.3)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Fixed empty branch name in debug message [\#115](https://github.com/tj-actions/changed-files/pull/115) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v8.2 [\#114](https://github.com/tj-actions/changed-files/pull/114) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v8.2](https://github.com/tj-actions/changed-files/tree/v8.2) (2021-06-24)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.1...v8.2)
|
||||
|
|
10
README.md
10
README.md
|
@ -55,7 +55,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v8.2
|
||||
uses: tj-actions/changed-files@v8.3
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -108,11 +108,11 @@ jobs:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v8.2
|
||||
uses: tj-actions/changed-files@v8.3
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v8.2
|
||||
uses: tj-actions/changed-files@v8.3
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -134,7 +134,7 @@ jobs:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v8.2
|
||||
uses: tj-actions/changed-files@v8.3
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -163,7 +163,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v8.2
|
||||
uses: tj-actions/changed-files@v8.3
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Reference in a new issue