Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e1d275d6d3 | ||
|
|
d048f47c2d | ||
|
|
3e1a5a0bbb | ||
|
|
c9d7fbfa0b | ||
|
|
b3f247794c | ||
|
|
9977eb95fd | ||
|
|
b2955a59c4 |
21
CHANGELOG.md
Normal file
21
CHANGELOG.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## [v2](https://github.com/tj-actions/changed-files/tree/v2) (2021-03-14)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1...v2)
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- Fixed end of string with separator [\#4](https://github.com/tj-actions/changed-files/pull/4) ([jackton1](https://github.com/jackton1))
|
||||||
|
|
||||||
|
## [v1](https://github.com/tj-actions/changed-files/tree/v1) (2021-03-05)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/tj-actions/changed-files/compare/7eba13b12c69e63845b6d8bf1d3453edb0549ff9...v1)
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- Update action.yml [\#2](https://github.com/tj-actions/changed-files/pull/2) ([jackton1](https://github.com/jackton1))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
History
|
|
||||||
-------
|
|
||||||
|
|
||||||
|
|
||||||
v1 (2021-03-04)
|
|
||||||
------------------
|
|
||||||
|
|
||||||
* Initial Release.
|
|
||||||
|
|
||||||
@@ -12,13 +12,13 @@ Get modified files using [`git diff --diff-filter`](https://git-scm.com/docs/git
|
|||||||
...
|
...
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Get modified files with defaults
|
- name: Get modified files using defaults
|
||||||
id: changed-files
|
id: changed-files
|
||||||
uses: ./
|
uses: tj-actions/changed-files@v2
|
||||||
|
|
||||||
- name: Get modified files with comma separator
|
- name: Get modified files using a comma separator
|
||||||
id: changed-files-comma
|
id: changed-files-comma
|
||||||
uses: ./
|
uses: tj-actions/changed-files@v2
|
||||||
with:
|
with:
|
||||||
separator: ","
|
separator: ","
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: Get modified files
|
name: Diff changed files
|
||||||
description: Get modified files
|
description: Diff changed files
|
||||||
author: tj-actions
|
author: tj-actions
|
||||||
inputs:
|
inputs:
|
||||||
separator:
|
separator:
|
||||||
|
|||||||
Reference in New Issue
Block a user