3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2025-01-17 19:17:45 +00:00

Renamed has_changed to all_changed (#33)

This commit is contained in:
Tonye Jack 2021-05-01 13:27:06 -04:00 committed by GitHub
parent c7eb6e4282
commit 8a7dfe02e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -33,7 +33,7 @@ Using the default separator.
| Output | type | example | description |
|:-------------------:|:------------:|:------------------------------:|:----------------------------------------:|
| 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).* |
| has_changed | `string` | `true OR false` | Returns `true` only when the filenames provided using `files` input have all changed |
| all_changed | `string` | `true OR false` | Returns `true` only when the filenames provided using `files` input have all changed |
| all_changed_files | `string` | 'new.txt other.png ...' | Select all paths (*) <br /> *i.e a combination of all options below.* |
| 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) |
@ -138,7 +138,7 @@ jobs:
^(mynewfile|custom)
- name: Run step if all files listed above have changed
if: steps.changed-files-specific.outputs.has_changed
if: steps.changed-files-specific.outputs.all_changed
run: |
echo "Both my-file.txt and test.txt have changed."

View file

@ -42,9 +42,9 @@ outputs:
all_modified_files:
description: List of all copied modified and added files
value: ${{ steps.changed_files.outputs.all_modified_files }}
has_changed:
all_changed:
description: Return true only when all files provided using the files input have all changed.
value: ${{ steps.changed_files.outputs.has_changed }}
value: ${{ steps.changed_files.outputs.all_changed }}
runs:
using: 'composite'
@ -134,9 +134,9 @@ runs:
IFS=$'\n' SORTED_OUTPUT_ALL_MODIFIED_FILES=($(sort <<<"${OUTPUT_ALL_MODIFIED_FILES[*]}"))
if [[ "${SORTED_INPUT_FILES[*]}" == "${SORTED_OUTPUT_ALL_MODIFIED_FILES[*]}" ]]; then
echo "::set-output name=has_changed::true"
echo "::set-output name=all_changed::true"
else
echo "::set-output name=has_changed::false"
echo "::set-output name=all_changed::false"
fi
echo "::set-output name=added_files::$ADDED"