diff --git a/README.md b/README.md index 8b64ec15..767bf1b9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ -
+[![CI status](https://github.com/Ana06/get-changed-files/workflows/Test/badge.svg)](https://github.com/Ana06/get-changed-files/actions?query=event%3Apush+branch%3Amain) +[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE.txt) + +This project is a fork of https://github.com/jitterbit/get-changed-files, which supports `pull_request_target` and allow to filter files using regular expressions. # Get All Changed Files @@ -14,7 +15,7 @@ The `steps` output context exposes the output names `all`, `added`, `modified`, See [action.yml](action.yml) ```yaml -- uses: jitterbit/get-changed-files@v1 +- uses: Ana06/get-changed-files@v1.1 with: # Format of the steps output context. # Can be 'space-delimited', 'csv', or 'json'. @@ -37,7 +38,7 @@ Consider using one of the other formats if that's the case. ```yaml - id: files - uses: jitterbit/get-changed-files@v1 + uses: Ana06/get-changed-files@v1.1 with: filter: '*.php' - run: | @@ -50,7 +51,7 @@ Consider using one of the other formats if that's the case. ```yaml - id: files - uses: jitterbit/get-changed-files@v1 + uses: Ana06/get-changed-files@v1.1 with: format: 'csv' - run: | @@ -64,7 +65,7 @@ Consider using one of the other formats if that's the case. ```yaml - id: files - uses: jitterbit/get-changed-files@v1 + uses: Ana06/get-changed-files@v1.1 with: format: 'json' - run: | diff --git a/action.yml b/action.yml index 98ed9a8d..ea845ade 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ -name: Get All Changed Files -description: Get all of the files changed/modified in a pull request or push's commits. +name: Get Changed Files +description: Get all files changed/modified in a pull request or push's commits. This project is a fork of https://github.com/jitterbit/get-changedfiles, which supports pull_request_target and allow to filter files using regular expressions author: Jitterbit, Inc. branding: icon: file