mirror of
https://github.com/tj-actions/changed-files
synced 2025-03-05 21:06:25 +00:00
Upgraded from v10 -> v10.1 (#206)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
parent
1d34e69895
commit
3d6d917b49
2 changed files with 25 additions and 14 deletions
19
HISTORY.md
19
HISTORY.md
|
@ -1,5 +1,20 @@
|
|||
# Changelog
|
||||
|
||||
## [v10.1](https://github.com/tj-actions/changed-files/tree/v10.1) (2021-10-12)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v10...v10.1)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- docs: add talva-tr as a contributor for code [\#205](https://github.com/tj-actions/changed-files/pull/205) ([allcontributors[bot]](https://github.com/apps/allcontributors))
|
||||
- Update entrypoint.sh [\#204](https://github.com/tj-actions/changed-files/pull/204) ([talva-tr](https://github.com/talva-tr))
|
||||
- Update tj-actions/verify-changed-files action to v8 [\#203](https://github.com/tj-actions/changed-files/pull/203) ([renovate[bot]](https://github.com/apps/renovate))
|
||||
- Upgraded to v10 [\#202](https://github.com/tj-actions/changed-files/pull/202) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v10](https://github.com/tj-actions/changed-files/tree/v10) (2021-10-03)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.3...v10)
|
||||
|
@ -18,10 +33,6 @@
|
|||
|
||||
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.1.2...v1.1.3)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Fixed bug setting the server URL for github enterprise server [\#198](https://github.com/tj-actions/changed-files/pull/198) ([jackton1](https://github.com/jackton1))
|
||||
|
|
20
README.md
20
README.md
|
@ -54,7 +54,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
|
||||
- name: List all modified files
|
||||
run: |
|
||||
|
@ -116,11 +116,11 @@ jobs:
|
|||
|
||||
- name: Get changed files using defaults
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
|
||||
- name: Get changed files using a comma separator
|
||||
id: changed-files-comma
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
with:
|
||||
separator: ","
|
||||
|
||||
|
@ -142,7 +142,7 @@ jobs:
|
|||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
with:
|
||||
files: |
|
||||
my-file.txt
|
||||
|
@ -180,14 +180,14 @@ jobs:
|
|||
|
||||
- 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@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
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@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
with:
|
||||
files_from_source_file: |
|
||||
test/changed-files-list.txt
|
||||
|
@ -196,13 +196,13 @@ jobs:
|
|||
|
||||
- name: Use a different commit SHA
|
||||
id: changed-files-custom-sha
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
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@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
with:
|
||||
base_sha: "2096ed0"
|
||||
|
||||
|
@ -214,7 +214,7 @@ jobs:
|
|||
|
||||
- name: Run changed-files with defaults on the dir1
|
||||
id: changed-files-for-dir1
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
with:
|
||||
path: dir1
|
||||
|
||||
|
@ -236,7 +236,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v10
|
||||
uses: tj-actions/changed-files@v10.1
|
||||
|
||||
- name: Pre-commit
|
||||
uses: pre-commit/action@v2.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue