mirror of
https://github.com/tj-actions/changed-files
synced 2025-02-19 15:23:42 +00:00
Upgraded from v12 -> v2.0.0 (#290)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
9c1a181e67
commit
31bc57ef04
2 changed files with 25 additions and 16 deletions
19
HISTORY.md
19
HISTORY.md
|
@ -1,16 +1,24 @@
|
|||
# Changelog
|
||||
|
||||
## [v12](https://github.com/tj-actions/changed-files/tree/v12) (2021-12-14)
|
||||
## [v2.0.0](https://github.com/tj-actions/changed-files/tree/v2.0.0) (2021-12-17)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.4...v12)
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12...v2.0.0)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- \[BUG\] Files input doesn't work when running with `act` [\#251](https://github.com/tj-actions/changed-files/issues/251)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Breaking changes in patch updates? [\#288](https://github.com/tj-actions/changed-files/issues/288)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Upgraded to v1.1.4 [\#286](https://github.com/tj-actions/changed-files/pull/286) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v12 [\#287](https://github.com/tj-actions/changed-files/pull/287) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v1.1.4](https://github.com/tj-actions/changed-files/tree/v1.1.4) (2021-12-14)
|
||||
## [v12](https://github.com/tj-actions/changed-files/tree/v12) (2021-12-14)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v11.9...v1.1.4)
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v11.9...v12)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
|
@ -26,6 +34,7 @@
|
|||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Upgraded to v1.1.4 [\#286](https://github.com/tj-actions/changed-files/pull/286) ([jackton1](https://github.com/jackton1))
|
||||
- \[PR 2\]: Added support for listing all\_modified\_files. [\#285](https://github.com/tj-actions/changed-files/pull/285) ([jackton1](https://github.com/jackton1))
|
||||
- Update peter-evans/create-pull-request action to v3.12.0 [\#284](https://github.com/tj-actions/changed-files/pull/284) ([renovate[bot]](https://github.com/apps/renovate))
|
||||
- \[PR 1\]: Renamed all\_modified\_files to all\_changed\_files [\#283](https://github.com/tj-actions/changed-files/pull/283) ([jackton1](https://github.com/jackton1))
|
||||
|
|
22
README.md
22
README.md
|
@ -73,7 +73,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
|
||||
- name: List all changed files
|
||||
run: |
|
||||
|
@ -150,11 +150,11 @@ Support this project with a :star:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -176,7 +176,7 @@ Support this project with a :star:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -214,14 +214,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@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
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@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
with:
|
||||
files_from_source_file: |
|
||||
test/changed-files-list.txt
|
||||
|
@ -230,13 +230,13 @@ Support this project with a :star:
|
|||
|
||||
- name: Use a different commit SHA
|
||||
id: changed-files-custom-sha
|
||||
uses: tj-actions/changed-files@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
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@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
with:
|
||||
base_sha: "2096ed0"
|
||||
|
||||
|
@ -248,7 +248,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@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
with:
|
||||
path: dir1
|
||||
|
||||
|
@ -260,7 +260,7 @@ 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@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
with:
|
||||
since_last_remote_commit: 'true'
|
||||
|
||||
|
@ -277,7 +277,7 @@ Support this project with a :star:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v12
|
||||
uses: tj-actions/changed-files@v2.0.0
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue