Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded to v13 #307

Merged
merged 1 commit into from
Jan 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 22 additions & 10 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,36 @@
# Changelog

## [Unreleased](https://github.com/tj-actions/changed-files/tree/HEAD)
## [v13](https://github.com/tj-actions/changed-files/tree/v13) (2022-01-05)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...HEAD)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v13)

**Implemented enhancements:**

- \[Feature\] Make it easier to exclude files [\#265](https://github.com/tj-actions/changed-files/issues/265)
- \[Feature\] Support the same filter syntax as GitHub Workflows [\#264](https://github.com/tj-actions/changed-files/issues/264)

**Closed issues:**

- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)

**Merged pull requests:**

- Upgraded tj-actions/glob to v3.2 [\#306](https://github.com/tj-actions/changed-files/pull/306) ([jackton1](https://github.com/jackton1))
- Update tj-actions/remark action to v2.3 [\#305](https://github.com/tj-actions/changed-files/pull/305) ([renovate[bot]](https://github.com/apps/renovate))
- Add support for using github's glob pattern syntax [\#304](https://github.com/tj-actions/changed-files/pull/304) ([jackton1](https://github.com/jackton1))
- Update tj-actions/remark action to v2 [\#302](https://github.com/tj-actions/changed-files/pull/302) ([renovate[bot]](https://github.com/apps/renovate))
- Bump tj-actions/github-changelog-generator from 1.10 to 1.11 [\#300](https://github.com/tj-actions/changed-files/pull/300) ([dependabot[bot]](https://github.com/apps/dependabot))
- Update tj-actions/github-changelog-generator action to v1.10 [\#299](https://github.com/tj-actions/changed-files/pull/299) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v2.0.1 [\#298](https://github.com/tj-actions/changed-files/pull/298) ([jackton1](https://github.com/jackton1))
- Upgraded to v12.2 [\#297](https://github.com/tj-actions/changed-files/pull/297) ([jackton1](https://github.com/jackton1))

## [v12.2](https://github.com/tj-actions/changed-files/tree/v12.2) (2021-12-30)
## [v2.0.1](https://github.com/tj-actions/changed-files/tree/v2.0.1) (2021-12-30)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v12.2)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...v2.0.1)

## [v2.0.1](https://github.com/tj-actions/changed-files/tree/v2.0.1) (2021-12-30)
## [v12.2](https://github.com/tj-actions/changed-files/tree/v12.2) (2021-12-30)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.1...v2.0.1)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.1...v12.2)

**Merged pull requests:**

Expand All @@ -30,10 +46,6 @@
- \[BUG\] The `other_modified_files` contains all modified files even those that match the file `filter`. [\#293](https://github.com/tj-actions/changed-files/issues/293)
- \[BUG\] The `only_modified` is evaluated to `true` even when `other_modified_files` is not empty. [\#292](https://github.com/tj-actions/changed-files/issues/292)

**Closed issues:**

- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27)

**Merged pull requests:**

- Fixed regression bug with other\_modified and other\_changed outputs [\#294](https://github.com/tj-actions/changed-files/pull/294) ([jackton1](https://github.com/jackton1))
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v12.2
uses: tj-actions/changed-files@v13

- name: List all changed files
run: |
Expand Down Expand Up @@ -140,11 +140,11 @@ Support this project with a :star:

- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v12.2
uses: tj-actions/changed-files@v13

- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v12.2
uses: tj-actions/changed-files@v13
with:
separator: ","

Expand All @@ -166,7 +166,7 @@ Support this project with a :star:

- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v12.2
uses: tj-actions/changed-files@v13
with:
files: |
my-file.txt
Expand Down Expand Up @@ -205,14 +205,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.2
uses: tj-actions/changed-files@v13
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.2
uses: tj-actions/changed-files@v13
with:
files_from_source_file: |
test/changed-files-list.txt
Expand All @@ -221,13 +221,13 @@ Support this project with a :star:

- name: Use a different commit SHA
id: changed-files-custom-sha
uses: tj-actions/changed-files@v12.2
uses: tj-actions/changed-files@v13
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.2
uses: tj-actions/changed-files@v13
with:
base_sha: "2096ed0"

Expand All @@ -239,7 +239,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.2
uses: tj-actions/changed-files@v13
with:
path: dir1

Expand All @@ -251,7 +251,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.2
uses: tj-actions/changed-files@v13
with:
since_last_remote_commit: "true"

Expand Down