Skip to content

Commit

Permalink
Prepare 2.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ana06 committed Feb 23, 2024
1 parent 791f764 commit 64dffb4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -35,7 +35,7 @@ This project is a fork of [jitterbit/get-changed-files](https://github.com/jitte
See [action.yml](action.yml)

```yaml
- uses: Ana06/get-changed-files@v2.2.0
- uses: Ana06/get-changed-files@v2.3.0
with:
# Format of the steps output context.
# Can be 'space-delimited', 'csv', or 'json'.
Expand All @@ -61,7 +61,7 @@ Consider using one of the other formats if that's the case.

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
- run: |
for changed_file in ${{ steps.files.outputs.all }}; do
echo "Do something with this ${changed_file}."
Expand All @@ -75,7 +75,7 @@ Consider using one of the other formats if that's the case.

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
with:
filter: '*.php'
- run: |
Expand All @@ -91,7 +91,7 @@ Therefore, including all YML files first and excluding the YML files of your `.g
If those two globs were inverted, you **would** include all the YML files, with the ones in your `.github/*/` directories.

```yaml
- uses: Ana06/get-changed-files@v2.2.0
- uses: Ana06/get-changed-files@v2.3.0
with:
filter: |
*.yml
Expand All @@ -102,7 +102,7 @@ If those two globs were inverted, you **would** include all the YML files, with

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
filter: '*'
Expand All @@ -117,7 +117,7 @@ If those two globs were inverted, you **would** include all the YML files, with

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'json'
filter: '*'
Expand Down

0 comments on commit 64dffb4

Please sign in to comment.