3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-17 13:47:20 +00:00

Upgraded from v11.7 -> v1.3.0 (#274)

Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
This commit is contained in:
Tonye Jack 2021-12-04 07:58:46 -05:00 committed by GitHub
parent 30988915fa
commit b42f932be5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 11 deletions

View file

@ -1,5 +1,33 @@
# Changelog # Changelog
## [v1.3.0](https://github.com/tj-actions/changed-files/tree/v1.3.0) (2021-12-04)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v11.7...v1.3.0)
**Implemented enhancements:**
- \[Feature\] Improve error handling of non local commit reference [\#255](https://github.com/tj-actions/changed-files/issues/255)
**Fixed bugs:**
- \[BUG\] When running in a workflow generated by a dependabot BUMP PR, the action fails [\#268](https://github.com/tj-actions/changed-files/issues/268)
**Closed issues:**
- Fix code scanning alert - Warn when duplicate definitions are found. [\#267](https://github.com/tj-actions/changed-files/issues/267)
**Merged pull requests:**
- Resolve error setting the base sha [\#272](https://github.com/tj-actions/changed-files/pull/272) ([jackton1](https://github.com/jackton1))
- Fixed error with test [\#270](https://github.com/tj-actions/changed-files/pull/270) ([jackton1](https://github.com/jackton1))
- Resolve error adding remote [\#269](https://github.com/tj-actions/changed-files/pull/269) ([jackton1](https://github.com/jackton1))
- Update base sha step [\#266](https://github.com/tj-actions/changed-files/pull/266) ([jackton1](https://github.com/jackton1))
- Improve error handling [\#263](https://github.com/tj-actions/changed-files/pull/263) ([jackton1](https://github.com/jackton1))
- Update README.md [\#262](https://github.com/tj-actions/changed-files/pull/262) ([jackton1](https://github.com/jackton1))
- Updated README.md [\#260](https://github.com/tj-actions/changed-files/pull/260) ([jackton1](https://github.com/jackton1))
- Updated README.md [\#258](https://github.com/tj-actions/changed-files/pull/258) ([jackton1](https://github.com/jackton1))
- Upgraded to v11.7 [\#257](https://github.com/tj-actions/changed-files/pull/257) ([jackton1](https://github.com/jackton1))
## [v11.7](https://github.com/tj-actions/changed-files/tree/v11.7) (2021-11-19) ## [v11.7](https://github.com/tj-actions/changed-files/tree/v11.7) (2021-11-19)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.2.2...v11.7) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.2.2...v11.7)

View file

@ -63,7 +63,7 @@ jobs:
- name: Get changed files - name: Get changed files
id: changed-files id: changed-files
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
- name: List all modified files - name: List all modified files
run: | run: |
@ -136,11 +136,11 @@ Support this project with a :star:
- name: Get changed files using defaults - name: Get changed files using defaults
id: changed-files id: changed-files
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
- name: Get changed files using a comma separator - name: Get changed files using a comma separator
id: changed-files-comma id: changed-files-comma
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
separator: "," separator: ","
@ -162,7 +162,7 @@ Support this project with a :star:
- name: Get specific changed files - name: Get specific changed files
id: changed-files-specific id: changed-files-specific
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
files: | files: |
my-file.txt my-file.txt
@ -200,14 +200,14 @@ Support this project with a :star:
- name: Use a source file or list of file(s) to populate to files input. - name: Use a source file or list of file(s) to populate to files input.
id: changed-files-specific-source-file id: changed-files-specific-source-file
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
files_from_source_file: | files_from_source_file: |
test/changed-files-list.txt 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. - 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 id: changed-files-specific-source-file-and-specify-files
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
files_from_source_file: | files_from_source_file: |
test/changed-files-list.txt test/changed-files-list.txt
@ -216,13 +216,13 @@ Support this project with a :star:
- name: Use a different commit SHA - name: Use a different commit SHA
id: changed-files-custom-sha id: changed-files-custom-sha
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
sha: ${{ github.event.pull_request.head.sha }} sha: ${{ github.event.pull_request.head.sha }}
- name: Use a different base SHA - name: Use a different base SHA
id: changed-files-custom-base-sha id: changed-files-custom-base-sha
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
base_sha: "2096ed0" base_sha: "2096ed0"
@ -234,7 +234,7 @@ Support this project with a :star:
- name: Run changed-files with defaults on the dir1 - name: Run changed-files with defaults on the dir1
id: changed-files-for-dir1 id: changed-files-for-dir1
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
path: dir1 path: dir1
@ -246,7 +246,7 @@ Support this project with a :star:
- name: Run changed-files using the last commit on the remote branch - name: Run changed-files using the last commit on the remote branch
id: changed-files-since-last-remote-commit id: changed-files-since-last-remote-commit
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
with: with:
since_last_remote_commit: 'true' since_last_remote_commit: 'true'
@ -263,7 +263,7 @@ Support this project with a :star:
- name: Get changed files - name: Get changed files
id: changed-files id: changed-files
uses: tj-actions/changed-files@v11.7 uses: tj-actions/changed-files@v1.3.0
- name: Pre-commit - name: Pre-commit
uses: pre-commit/action@v2.0.0 uses: pre-commit/action@v2.0.0