diff --git a/HISTORY.md b/HISTORY.md index 794e0600..78b8dfe5 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,44 @@ # Changelog +# [37.0.0](https://github.com/tj-actions/changed-files/compare/v36.4.1...v37.0.0) - (2023-06-23) + +## 🚀 Features + +- Add support for retrieving changed files via github rest api ([#1289](https://github.com/tj-actions/changed-files/issues/1289)) ([fd5b3a4](https://github.com/tj-actions/changed-files/commit/fd5b3a411da53db8da7b4b197cc1b1066dcd5360)) - (Tonye Jack) + +## ➖ Remove + +- Deprecated dir_names_exclude_root ([#1291](https://github.com/tj-actions/changed-files/issues/1291)) ([faa5db4](https://github.com/tj-actions/changed-files/commit/faa5db4b1d5c904bd14ba8dc0d429e2c257c9638)) - (Tonye Jack) + +## 🔄 Update + +- Updated README.md ([#1295](https://github.com/tj-actions/changed-files/issues/1295)) + +Co-authored-by: jackton1 ([a553a02](https://github.com/tj-actions/changed-files/commit/a553a029f5a46a8e74f782b41db046e63aab0cfb)) - (tj-actions[bot]) +- Updated README.md ([#1292](https://github.com/tj-actions/changed-files/issues/1292)) + +Co-authored-by: repo-ranger[bot] ([63f203d](https://github.com/tj-actions/changed-files/commit/63f203d400de5479b07e8a01487881309f2bc0ce)) - (tj-actions[bot]) + +## ⚙️ Miscellaneous Tasks + +- Update README.md ([5817a9e](https://github.com/tj-actions/changed-files/commit/5817a9efb0d7cc34b917d8146ea10b9f32044968)) - (Tonye Jack) +- **deps:** Lock file maintenance ([#1297](https://github.com/tj-actions/changed-files/issues/1297)) ([33d50af](https://github.com/tj-actions/changed-files/commit/33d50af03f5e8e0914e7ddea9455ca6cde2033b1)) - (renovate[bot]) +- Use input api url ([#1293](https://github.com/tj-actions/changed-files/issues/1293)) ([a4cd522](https://github.com/tj-actions/changed-files/commit/a4cd522ee2e5d7999bb102867e6d806e59861c52)) - (Tonye Jack) +- **deps:** Lock file maintenance ([#1290](https://github.com/tj-actions/changed-files/issues/1290)) ([c4a394a](https://github.com/tj-actions/changed-files/commit/c4a394a9cfbbfcea1d864b5d6c9f9aa2b7960a9b)) - (renovate[bot]) +- **deps:** Update tj-actions/verify-changed-files action to v16 ([#1288](https://github.com/tj-actions/changed-files/issues/1288)) ([50ae49b](https://github.com/tj-actions/changed-files/commit/50ae49b0e4dc2c5bdccb7aad26373561c753b17f)) - (renovate[bot]) +- Update manual-test.yml ([588d46e](https://github.com/tj-actions/changed-files/commit/588d46e858ff7c814f5a26458ae8794b715d690a)) - (Tonye Jack) +- Update README.md ([bdeaa91](https://github.com/tj-actions/changed-files/commit/bdeaa9108ce22a3e92aefbe165c85ea29b839a24)) - (Tonye Jack) +- Update matrix-test.yml ([4d8812d](https://github.com/tj-actions/changed-files/commit/4d8812d205c7d0bca52560321514947f65c7a2f9)) - (Tonye Jack) +- **deps:** Lock file maintenance ([#1287](https://github.com/tj-actions/changed-files/issues/1287)) ([668fd3a](https://github.com/tj-actions/changed-files/commit/668fd3a7139e499b321f1889c2f1a90b508da43e)) - (renovate[bot]) +- **deps:** Lock file maintenance ([#1285](https://github.com/tj-actions/changed-files/issues/1285)) ([b952f3b](https://github.com/tj-actions/changed-files/commit/b952f3beb3bb65ec19163628da458efb10e5f3d6)) - (renovate[bot]) +- **deps:** Lock file maintenance ([#1284](https://github.com/tj-actions/changed-files/issues/1284)) ([ce8bc5d](https://github.com/tj-actions/changed-files/commit/ce8bc5d49a2cf03a217066239554d467140a3054)) - (renovate[bot]) + +## ⬆️ Upgrades + +- Upgraded to v36.4.1 ([#1283](https://github.com/tj-actions/changed-files/issues/1283)) + +Co-authored-by: jackton1 ([9ff3603](https://github.com/tj-actions/changed-files/commit/9ff36033594327f40a8c22612579a3604e90fc7a)) - (tj-actions[bot]) + # [36.4.1](https://github.com/tj-actions/changed-files/compare/v36.4.0...v36.4.1) - (2023-06-19) ## 🐛 Bug Fixes diff --git a/README.md b/README.md index bf018f5b..10ecad97 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ jobs: steps: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 - name: List all changed files run: | @@ -130,7 +130,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 # To compare changes between the current commit and the last pushed remote commit set `since_last_remote_commit: true`. e.g # with: @@ -152,7 +152,7 @@ jobs: - name: Get changed files in the docs folder id: changed-files-specific - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: files: docs/*.{js,html} # Alternatively using: `docs/**` or `docs` @@ -172,7 +172,7 @@ jobs: - name: Get all changed .js file(s) or any file in the static folder excluding the docs folder id: changed-files-excluded - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: files: | **.js @@ -195,7 +195,7 @@ jobs: - name: Get all test, doc and src files that have changed id: changed-files-yaml - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: files_yaml: | doc: @@ -361,7 +361,7 @@ The format of the version string is as follows: ... - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 ... ``` @@ -374,7 +374,7 @@ The format of the version string is as follows: ... - name: Get all changed files and use a comma separator in the output id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: separator: "," ... @@ -391,7 +391,7 @@ See [inputs](#inputs) for more information. ... - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 - name: List all added files run: | @@ -412,7 +412,7 @@ See [outputs](#outputs) for a list of all available outputs. ... - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 - name: Run a step if my-file.txt was modified if: contains(steps.changed-files.outputs.modified_files, 'my-file.txt') @@ -472,7 +472,7 @@ See [outputs](#outputs) for a list of all available outputs. ... - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: files: | my-file.txt @@ -495,7 +495,7 @@ See [inputs](#inputs) for more information. ... - name: Get changed files id: changed-files-specific - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: files: | my-file.txt @@ -542,7 +542,7 @@ See [outputs](#outputs) for a list of all available outputs. ... - name: Get changed files using a source file or list of file(s) to populate to files input. id: changed-files-specific-source-file - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: files_from_source_file: test/changed-files-list.txt ... @@ -559,7 +559,7 @@ See [inputs](#inputs) for more information. ... - name: Get changed files using 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@v36 + uses: tj-actions/changed-files@v37 with: files_from_source_file: | test/changed-files-list.txt @@ -580,7 +580,7 @@ See [inputs](#inputs) for more information. ... - name: Get changed files using a different SHA id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: sha: ${{ github.event.pull_request.head.sha }} ... @@ -597,7 +597,7 @@ See [inputs](#inputs) for more information. ... - name: Get changed files using a different base SHA id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: base_sha: ${{ github.event.pull_request.base.sha }} ... @@ -629,11 +629,11 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 - name: Get changed files in the .github folder id: changed-files-specific - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: base_sha: ${{ steps.get-base-sha.outputs.base_sha }} files: .github/** @@ -663,7 +663,7 @@ See [inputs](#inputs) for more information. - name: Run changed-files with defaults in dir1 id: changed-files-for-dir1 - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: path: dir1 @@ -686,7 +686,7 @@ See [inputs](#inputs) for more information. ... - name: Run changed-files with quotepath disabled id: changed-files-quotepath - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: quotepath: "false" @@ -725,7 +725,7 @@ See [inputs](#inputs) for more information. - name: Run changed-files with the commit of the last successful test workflow run id: changed-files-base-sha-push - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: base_sha: ${{ steps.last_successful_commit_push.outputs.base }} ... @@ -752,7 +752,7 @@ See [inputs](#inputs) for more information. - name: Run changed-files with the commit of the last successful test workflow run on main id: changed-files-base-sha-pull-request - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: base_sha: ${{ steps.last_successful_commit_pull_request.outputs.base }} ... @@ -776,7 +776,7 @@ See [inputs](#inputs) for more information. ... - name: Run changed-files with dir_names id: changed-files-dir-names - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: dir_names: "true" ... @@ -793,7 +793,7 @@ See [inputs](#inputs) for more information. ... - name: Run changed-files with json output id: changed-files-json - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: json: "true" ... @@ -810,13 +810,13 @@ See [inputs](#inputs) for more information. ... - name: Get changed-files since 2022-08-19 id: changed-files-since - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: since: "2022-08-19" - name: Get changed-files until 2022-08-20 id: changed-files-until - uses: tj-actions/changed-files@v36 + uses: tj-actions/changed-files@v37 with: until: "2022-08-20" ...