Added support for detecting non specific file changes. (#137)

This commit is contained in:
Tonye Jack
2021-07-17 15:13:26 -04:00
committed by GitHub
parent cb4914b39a
commit 8c6f276ea5
4 changed files with 42 additions and 1 deletions

View File

@@ -60,6 +60,12 @@ outputs:
any_changed:
description: Return true only when any files provided using the files input have changed.
value: ${{ steps.changed-files.outputs.any_changed }}
only_changed:
description: Return true only when only files provided using the files input have changed.
value: ${{ steps.changed-files.outputs.only_changed }}
other_changed_files:
description: Return list of changed files not listed in the files input.
value: ${{ steps.changed-files.outputs.other_changed_files }}
runs:
using: 'composite'