2021-06-09 15:55:30 +00:00
[![CI ](https://github.com/tj-actions/changed-files/actions/workflows/test.yml/badge.svg )](https://github.com/tj-actions/changed-files/actions/workflows/test.yml) [![Update release version. ](https://github.com/tj-actions/changed-files/actions/workflows/sync-release-version.yml/badge.svg )](https://github.com/tj-actions/changed-files/actions/workflows/sync-release-version.yml) [![Public workflows that use this action. ](https://img.shields.io/endpoint?url=https%3A%2F%2Fapi-endbug.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3Dtj-actions%2Fchanged-files%26badge%3Dtrue )](https://github.com/search?o=desc\&q=tj-actions+changed-files+path%3A.github%2Fworkflows+language%3AYAML\&s=\&type=Code)
2021-03-11 00:59:05 +00:00
2021-06-09 15:55:30 +00:00
## changed-files
2021-03-05 02:36:52 +00:00
2021-06-03 10:57:40 +00:00
Retrieve all changed files relative to the default branch (`pull_request*` events) or a previous commit (`push` event) returning the **absolute path** to all changed files from the project root.
2021-05-25 21:39:15 +00:00
2021-05-01 17:15:09 +00:00
## Features
2021-06-09 15:55:30 +00:00
* List all files that have changed.
* Between the current pull request branch and the default branch.
* Between the last commit and the current pushed change.
* Restrict change detection to a subset of files.
* Report on files that have at least one change.
* Regex pattern matching on a subset of files.
2021-05-01 17:15:09 +00:00
2021-05-04 17:53:26 +00:00
## Usage
2021-05-24 20:02:02 +00:00
> NOTE: :warning:
2021-06-09 15:55:30 +00:00
>
> * **IMPORTANT:** For `push` events to work you need to include `fetch-depth: 0` **OR** `fetch-depth: 2` depending on your use case.
> * When using `persist-credentials: false` with `actions/checkout@v2` you'll need to specify a `token` using the `token` input.
2021-05-04 17:53:26 +00:00
```yaml
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Test changed-files
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
- name: Get changed files
id: changed-files
2021-06-09 22:20:27 +00:00
uses: tj-actions/changed-files@v7
2021-05-04 17:53:26 +00:00
- name: List all modified files
run: |
for file in "${{ steps.changed-files.outputs.all_modified_files }}"; do
echo "$file was modified"
done
```
2021-04-24 08:49:18 +00:00
## Outputs
| Acronym | Meaning |
|:---------:|:------------:|
| A | Added |
| C | Copied |
2021-06-09 13:31:52 +00:00
| M | Modified |
2021-04-24 08:49:18 +00:00
| D | Deleted |
| R | Renamed |
| T | Type changed |
| U | Unmerged |
| X | Unknown |
2021-06-09 13:31:52 +00:00
| Output | type | example | description |
|:--------------------:|:------------:|:----------------------------------:|:----------------------------------------:|
| any_changed | `string` | `true` OR `false` | Returns `true` when any of the filenames provided using the `files` input has changed |
| all_modified_files | `string` | `'new.txt path/to/file.png ...'` | Select all modified files < br /> i.e. *a combination of all added, <br />copied and modified files (ACM).* |
2021-06-09 15:55:30 +00:00
| all_changed_files | `string` | `'new.txt path/to/file.png ...'` | Select all paths (\*) < br /> i.e. *a combination of all options below.* |
2021-06-09 13:31:52 +00:00
| added_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Added (A) |
| copied_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Copied (C) |
| deleted_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Deleted (D) |
| modified_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Modified (M) |
| renamed_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Renamed (R) |
2021-06-09 15:55:30 +00:00
| changed_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that have their file type changed (T) |
2021-06-09 13:31:52 +00:00
| unmerged_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Unmerged (U) |
| unknown_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Unknown (X) |
2021-04-24 08:49:18 +00:00
## Inputs
| Input | type | required | default | description |
2021-06-09 13:31:52 +00:00
|:-------------:|:-----------:|:-------------:|:-----------------------------:|:-------------:|
| token | `string` | `false` | `${{ github.token }}` | [GITHUB_TOKEN ](https://docs.github.com/en/free-pro-team@latest/actions/reference/authentication-in-a-workflow#using-the-github_token-in-a-workflow ) < br /> or a repo scoped < br /> [Personal Access Token ](https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/creating-a-personal-access-token ) |
| separator | `string` | `true` | `' '` | Output string separator |
2021-05-13 11:08:08 +00:00
| files | `string` OR `string[]` | `false` | | Restricted list < br > or string of specific < br > files or filename < br > to watch for changes |
2021-04-24 08:49:18 +00:00
2021-04-04 13:11:55 +00:00
## Example
2021-03-14 19:42:54 +00:00
```yaml
...
steps:
- uses: actions/checkout@v2
2021-05-07 21:46:34 +00:00
2021-04-01 11:43:05 +00:00
- name: Get changed files using defaults
2021-04-27 16:07:27 +00:00
id: changed-files
2021-06-09 22:20:27 +00:00
uses: tj-actions/changed-files@v7
2021-03-14 19:42:54 +00:00
2021-04-01 11:43:05 +00:00
- name: Get changed files using a comma separator
2021-04-27 16:07:27 +00:00
id: changed-files-comma
2021-06-09 22:20:27 +00:00
uses: tj-actions/changed-files@v7
2021-03-14 19:42:54 +00:00
with:
separator: ","
2021-05-01 16:17:17 +00:00
2021-03-14 19:42:54 +00:00
- name: List all added files
run: |
2021-04-27 16:07:27 +00:00
for file in "${{ steps.changed-files.outputs.added_files }}"; do
2021-04-24 08:55:30 +00:00
echo "$file was added"
2021-03-14 19:42:54 +00:00
done
2021-05-01 16:17:17 +00:00
2021-04-24 08:57:13 +00:00
- name: Run step when a file changes
2021-04-27 16:07:27 +00:00
if: contains(steps.changed-files.outputs.modified_files, 'my-file.txt')
2021-04-02 12:08:05 +00:00
run: |
2021-05-01 17:03:29 +00:00
echo "Your file my-file.txt has been modified."
2021-04-02 12:08:05 +00:00
2021-04-24 08:57:13 +00:00
- name: Run step when a file has been deleted
2021-04-27 16:07:27 +00:00
if: contains(steps.changed-files.outputs.deleted_files, 'test.txt')
2021-04-02 12:08:05 +00:00
run: |
2021-05-01 17:03:29 +00:00
echo "Your test.txt has been deleted."
2021-05-01 16:17:17 +00:00
- name: Get specific changed files
id: changed-files-specific
2021-06-09 22:20:27 +00:00
uses: tj-actions/changed-files@v7
2021-05-01 16:17:17 +00:00
with:
files: |
my-file.txt
test.txt
2021-05-01 17:15:09 +00:00
new.txt
test_directory
2021-05-30 01:42:01 +00:00
.(png|jpeg)$
2021-05-01 17:15:09 +00:00
.(sql)$
^(mynewfile|custom)
2021-05-01 16:17:17 +00:00
2021-05-01 18:39:03 +00:00
- name: Run step if any of the listed files above change
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
2021-05-09 10:19:06 +00:00
echo "One or more files listed above has changed."
2021-05-01 18:39:03 +00:00
2021-03-14 19:42:54 +00:00
```
2021-04-11 22:27:34 +00:00
### Running [pre-commit](https://pre-commit.com/) on all modified files
```yaml
...
steps:
- uses: actions/checkout@v2
with:
2021-05-06 13:25:34 +00:00
fetch-depth: 0
2021-04-11 22:27:34 +00:00
- name: Get changed files
2021-04-27 16:07:27 +00:00
id: changed-files
2021-06-09 22:20:27 +00:00
uses: tj-actions/changed-files@v7
2021-04-11 22:27:34 +00:00
- name: Pre-commit
uses: pre-commit/action@v2.0.0
with:
2021-04-27 16:07:27 +00:00
extra_args: -v --hook-stage push --files ${{ steps.changed-files.outputs.all_modified_files }}
2021-04-11 22:27:34 +00:00
token: ${{ secrets.github_token }}
```
2021-04-02 12:22:12 +00:00
## Example
2021-06-03 11:02:25 +00:00
2021-06-09 15:55:30 +00:00
![Screen Shot 2021-05-13 at 4 55 30 PM ](https://user-images.githubusercontent.com/17484350/118186772-1cc1c400-b40c-11eb-8fe8-b651e674ce96.png )
2021-06-03 11:02:25 +00:00
![Screen Shot 2021-05-21 at 8 38 31 AM ](https://user-images.githubusercontent.com/17484350/119138539-fc979380-ba0f-11eb-802c-6e403faac300.png )
![Screen Shot 2021-06-03 at 7 01 57 AM ](https://user-images.githubusercontent.com/17484350/120634754-9f510880-c439-11eb-9e7b-5184bd8f7939.png )
2021-05-21 12:39:22 +00:00
2021-06-09 15:55:30 +00:00
* Free software: [MIT license ](LICENSE )
2021-03-05 02:36:52 +00:00
2021-06-05 20:51:43 +00:00
If you feel generous and want to show some extra appreciation:
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
[buymeacoffee]: https://www.buymeacoffee.com/jackton1
2021-06-09 15:55:30 +00:00
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png
2021-06-05 20:51:43 +00:00
2021-06-09 15:55:30 +00:00
## Credits
2021-03-05 02:36:52 +00:00
This package was created with [Cookiecutter ](https://github.com/cookiecutter/cookiecutter ).
2021-06-09 15:55:30 +00:00
## Report Bugs
2021-03-05 02:36:52 +00:00
Report bugs at https://github.com/tj-actions/changed-files/issues.
If you are reporting a bug, please include:
2021-06-09 15:55:30 +00:00
* Your operating system name and version.
* Any details about your workflow that might be helpful in troubleshooting.
* Detailed steps to reproduce the bug.