3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-16 09:27:57 +00:00
changed-files/README.md

208 lines
7.7 KiB
Markdown
Raw Normal View History

2021-05-21 11:41:56 +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) <a href="https://github.com/search?q=tj-actions+changed-files+path%3A.github%2Fworkflows+language%3AYAML&type=code" target="_blank" title="Public workflows that use this action."><img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fapi-tj-actions.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3Dtj-actions%2Fchanged-files%26badge%3Dtrue" alt="Public workflows that use this action."></a>
2021-03-11 00:59:05 +00:00
2021-03-05 02:36:52 +00:00
changed-files
-------------
2021-05-25 21:39:15 +00:00
Retrieve all changed files relative to the default branch (`pull_request*` events) or a previous commit (`push` event).
This includes detecting files that were:
- Added
- Copied
- Modified
- Deleted
- Renamed
- Type changed
- Unmerged
- Unknown
2021-03-05 02:36:52 +00:00
2021-03-11 00:57:53 +00:00
2021-05-01 17:15:09 +00:00
## Features
2021-05-01 19:44:58 +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.
2021-05-04 18:07:18 +00:00
- Restrict change detection to a subset of files.
2021-05-13 20:57:44 +00:00
- Report on files that have at least one change.
2021-05-02 00:15:41 +00:00
- 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:
> * **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-05-26 22:09:18 +00:00
uses: tj-actions/changed-files@v6.3
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 |
| M | Modified. |
| D | Deleted |
| R | Renamed |
| T | Type changed |
| U | Unmerged |
| X | Unknown |
| Output | type | example | description |
|:-------------------:|:------------:|:------------------------------:|:----------------------------------------:|
2021-05-08 16:25:18 +00:00
| any_changed | `string` | `true` OR `false` | Returns `true` when any of the filenames provided using the `files` input has changed |
2021-05-17 11:10:31 +00:00
| all_modified_files | `string` | `'new.txt other.png ...'` | Select all modified files <br /> i.e *a combination of all added, <br />copied and modified files (ACM).* |
| all_changed_files | `string` | `'new.txt other.png ...'` | Select all paths (*) <br /> i.e *a combination of all options below.* |
2021-05-03 17:29:37 +00:00
| added_files | `string` | `'new.txt other.png ...'` | Select only files that are Added (A) |
| copied_files | `string` | `'new.txt other.png ...'` | Select only files that are Copied (C) |
| deleted_files | `string` | `'new.txt other.png ...'` | Select only files that are Deleted (D) |
| modified_files | `string` | `'new.txt other.png ...'` | Select only files that are Modified (M) |
| renamed_files | `string` | `'new.txt other.png ...'` | Select only files that are Renamed (R) |
| changed_files | `string` | `'new.txt other.png ...'` | Select only files that have their file type changed (T) |
| unmerged_files | `string` | `'new.txt other.png ...'` | Select only files that are Unmerged (U) |
| unknown_files | `string` | `'new.txt other.png ...'` | Select only files that are Unknown (X) |
2021-04-24 08:49:18 +00:00
## Inputs
| Input | type | required | default | description |
|:-------------:|:-----------:|:-------------:|:----------------------------:|:-------------:|
2021-05-06 12:54:34 +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) |
2021-05-05 07:43:47 +00:00
| 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-05-26 22:09:18 +00:00
uses: tj-actions/changed-files@v6.3
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-05-26 22:09:18 +00:00
uses: tj-actions/changed-files@v6.3
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-05-26 22:09:18 +00:00
uses: tj-actions/changed-files@v6.3
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
.(py|jpeg)$
.(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-05-26 22:09:18 +00:00
uses: tj-actions/changed-files@v6.3
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-03-14 19:42:54 +00:00
2021-04-02 12:22:12 +00:00
## Example
2021-05-21 12:39:22 +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) ![Screen Shot 2021-05-21 at 8 38 31 AM](https://user-images.githubusercontent.com/17484350/119138539-fc979380-ba0f-11eb-802c-6e403faac300.png)
2021-04-02 12:22:12 +00:00
2021-03-05 02:36:52 +00:00
* Free software: [MIT license](LICENSE)
2021-03-11 00:57:53 +00:00
2021-03-05 02:36:52 +00:00
Credits
-------
This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter).
Report Bugs
-----------
Report bugs at https://github.com/tj-actions/changed-files/issues.
If you are reporting a bug, please include:
* Your operating system name and version.
* Any details about your workflow that might be helpful in troubleshooting.
* Detailed steps to reproduce the bug.