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 v12.0 #220

Merged
merged 1 commit into from Oct 16, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
31 changes: 27 additions & 4 deletions HISTORY.md
@@ -1,19 +1,42 @@
# Changelog

## [v11.1](https://github.com/tj-actions/verify-changed-files/tree/v11.1) (2022-08-26)
## [v12.0](https://github.com/tj-actions/verify-changed-files/tree/v12.0) (2022-10-16)

[Full Changelog](https://github.com/tj-actions/verify-changed-files/compare/v11...v11.1)
[Full Changelog](https://github.com/tj-actions/verify-changed-files/compare/v12...v12.0)

**Fixed bugs:**
## [v12](https://github.com/tj-actions/verify-changed-files/tree/v12) (2022-10-16)

- \[BUG\] Except pattern not working [\#201](https://github.com/tj-actions/verify-changed-files/issues/201)
[Full Changelog](https://github.com/tj-actions/verify-changed-files/compare/v11.1...v12)

**Closed issues:**

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

**Merged pull requests:**

- feat: add support for writing to GITHUB\_OUTPUT file [\#219](https://github.com/tj-actions/verify-changed-files/pull/219) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update tj-actions/glob action to v15 [\#218](https://github.com/tj-actions/verify-changed-files/pull/218) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update actions/first-interaction action to v1.1.1 [\#217](https://github.com/tj-actions/verify-changed-files/pull/217) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update tj-actions/glob action to v14 [\#216](https://github.com/tj-actions/verify-changed-files/pull/216) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update actions/checkout action to v3.1.0 [\#215](https://github.com/tj-actions/verify-changed-files/pull/215) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update peter-evans/create-pull-request action to v4.1.3 [\#214](https://github.com/tj-actions/verify-changed-files/pull/214) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update peter-evans/create-pull-request action to v4.1.2 [\#213](https://github.com/tj-actions/verify-changed-files/pull/213) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): bump codacy/codacy-analysis-cli-action from 4.1.0 to 4.2.0 [\#212](https://github.com/tj-actions/verify-changed-files/pull/212) ([dependabot[bot]](https://github.com/apps/dependabot))
- chore\(deps\): update tj-actions/sync-release-version action to v13 [\#210](https://github.com/tj-actions/verify-changed-files/pull/210) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update tj-actions/sync-release-version action to v12 [\#209](https://github.com/tj-actions/verify-changed-files/pull/209) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update tj-actions/github-changelog-generator action to v1.15 [\#208](https://github.com/tj-actions/verify-changed-files/pull/208) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v11.1 [\#207](https://github.com/tj-actions/verify-changed-files/pull/207) ([jackton1](https://github.com/jackton1))

## [v11.1](https://github.com/tj-actions/verify-changed-files/tree/v11.1) (2022-08-26)

[Full Changelog](https://github.com/tj-actions/verify-changed-files/compare/v11...v11.1)

**Fixed bugs:**

- \[BUG\] Except pattern not working [\#201](https://github.com/tj-actions/verify-changed-files/issues/201)

**Merged pull requests:**

- chore\(deps\): updated tj-actions/glob to v13 [\#206](https://github.com/tj-actions/verify-changed-files/pull/206) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update tj-actions/verify-changed-files action to v11 [\#205](https://github.com/tj-actions/verify-changed-files/pull/205) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v11 [\#204](https://github.com/tj-actions/verify-changed-files/pull/204) ([jackton1](https://github.com/jackton1))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -53,7 +53,7 @@ Verify that certain files or directories did or did not change during the workfl
echo "Changed" > test_directory/new.txt

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v11.1
uses: tj-actions/verify-changed-files@v12
id: verify-changed-files
with:
files: |
Expand All @@ -76,7 +76,7 @@ Verify that certain files or directories did or did not change during the workfl
```yaml
...
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v11.1
uses: tj-actions/verify-changed-files@v12
id: verify-changed-files
with:
files: |
Expand Down