feat: add support for returning directory names (#522)

* feat: add support for returning directory names

* Updated step name

* Updated to return uniq dir names

* Updated README.md

* Updated README.md

* Updated separator encoding
This commit is contained in:
Tonye Jack 2022-06-12 10:08:13 -04:00 committed by GitHub
parent cf50530aad
commit 4cbef76b5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 91 additions and 68 deletions

View File

@ -69,8 +69,8 @@ body:
id: logs id: logs
attributes: attributes:
label: Relevant log output label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. description: Please copy and paste any relevant log outputs after enabling debug logging using ACTIONS_STEP_DEBUG=true See https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging. This will be automatically formatted into code, so no need for backticks.
render: shell render: bash
- type: textarea - type: textarea
attributes: attributes:
label: Anything else? label: Anything else?

View File

@ -242,6 +242,16 @@ jobs:
echo '${{ toJSON(steps.changed-files-quotepath.outputs) }}' echo '${{ toJSON(steps.changed-files-quotepath.outputs) }}'
shell: shell:
bash bash
- name: Run changed-files with dir_names
id: changed-files-only-dir-names
uses: ./
with:
dir_names: "true"
- name: Show output
run: |
echo '${{ toJSON(steps.changed-files-only-dir-names.outputs) }}'
shell:
bash
- name: Run changed-files with forward slash separator - name: Run changed-files with forward slash separator
id: changed-files-forward-slash id: changed-files-forward-slash
uses: ./ uses: ./

View File

@ -114,7 +114,7 @@ Support this project with a :star:
| all\_changed\_files | `string` | `'new.txt path/to/file.png ...'` | Select all changed files <br /> i.e. *a combination of all added, <br />copied, modified and renamed files (ACMR)* | | all\_changed\_files | `string` | `'new.txt path/to/file.png ...'` | Select all changed files <br /> i.e. *a combination of all added, <br />copied, modified and renamed files (ACMR)* |
| all\_modified\_files | `string` | `'new.txt path/to/file.png ...'` | Select all changed files <br /> i.e. *a combination of all added, <br />copied, modified, renamed and deleted files (ACMRD)* | | all\_modified\_files | `string` | `'new.txt path/to/file.png ...'` | Select all changed files <br /> i.e. *a combination of all added, <br />copied, modified, renamed and deleted files (ACMRD)* |
| all\_changed\_and\_modified\_files | `string` | `'new.txt path/to/file.png ...'` | Select all changed <br /> and modified files <br /> i.e. *a combination of (ACMRDTUX)* | | all\_changed\_and\_modified\_files | `string` | `'new.txt path/to/file.png ...'` | Select all changed <br /> and modified files <br /> i.e. *a combination of (ACMRDTUX)* |
| all\_old\_new\_renamed\_files | `string` | `'old name.txt,new name.txt old name 2.txt,new name 2.txt...'` | Select only files that are Renamed and list their old and new names (R) | | all\_old\_new\_renamed\_files | `string` | `'old name.txt,new name.txt old name 2.txt,new name 2.txt...'` | Select only files that are Renamed and list their old and new names (R) |
| added\_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Added (A) | | added\_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Added (A) |
| copied\_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Copied (C) | | copied\_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Copied (C) |
| deleted\_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Deleted (D) | | deleted\_files | `string` | `'new.txt path/to/file.png ...'` | Select only files that are Deleted (D) |
@ -126,26 +126,27 @@ Support this project with a :star:
## Inputs ## Inputs
| Input | type | required | default | description | | Input | type | required | default | description |
|:---------------------------------:|:----------------------:|:--------:|:---------------------:|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:| |:--------------------------------------:|:----------------------:|:--------:|:---------------------:|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
| 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) | | 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) |
| separator | `string` | `false` | `' '` | Split character for output strings | | separator | `string` | `false` | `' '` | Split character for output strings |
| include\_all\_old\_new\_renamed\_files | `boolean` | `false` | `false` | Include `all_old_new_renamed_files` output. Note this can generate a large debug output See: [#501](https://github.com/tj-actions/changed-files/issues/501). | | include\_all\_old\_new\_renamed\_files | `boolean` | `false` | `false` | Include `all_old_new_renamed_files` output. Note this can generate a large debug output See: [#501](https://github.com/tj-actions/changed-files/issues/501). |
| old\_new\_separator | `string` | `false` | `','` | Split character for old and new filename pairs | | old\_new\_separator | `string` | `false` | `','` | Split character for old and new filename pairs |
| old\_new\_files\_separator | `string` | `false` | `' '` | Split character for multiple old and new filename pairs | | old\_new\_files\_separator | `string` | `false` | `' '` | Split character for multiple old and new filename pairs |
| files | `string` OR `string[]` | `false` | | Check for changes <br> using only these <br> list of file(s) <br> (Defaults to the <br> entire repo) | | files | `string` OR `string[]` | `false` | | Check for changes <br> using only these <br> list of file(s) <br> (Defaults to the <br> entire repo) |
| files\_separator | string | `false` | `'\n'` | Separator used to split the<br>`files` input | | files\_separator | `string` | `false` | `'\n'` | Separator used to split the<br>`files` input |
| files\_from\_source\_file | `string` | `false` | | Source file(s) <br> used to populate <br> the `files` input | | files\_from\_source\_file | `string` | `false` | | Source file(s) <br> used to populate <br> the `files` input |
| files\_ignore | string | `false` | | Ignore changes to these file(s) | | files\_ignore | `string` | `false` | | Ignore changes to these file(s) |
| files\_ignore\_separator | string | `false` | `'\n'` | Separator used to split the <br>`files-ignore` input | | files\_ignore\_separator | `string` | `false` | `'\n'` | Separator used to split the <br>`files-ignore` input |
| files\_ignore\_from\_source\_file | `string` | `false` | | Source file(s) <br> used to populate <br> the `files_ignore` input | | files\_ignore\_from\_source\_file | `string` | `false` | | Source file(s) <br> used to populate <br> the `files_ignore` input |
| sha | `string` | `true` | `${{ github.sha }}` | Specify a different <br> commit SHA <br> used for <br> comparing changes | | sha | `string` | `true` | `${{ github.sha }}` | Specify a different <br> commit SHA <br> used for <br> comparing changes |
| base\_sha | `string` | `false` | | Specify a different <br> base commit SHA <br> used for <br> comparing changes | | base\_sha | `string` | `false` | | Specify a different <br> base commit SHA <br> used for <br> comparing changes |
| path | `string` | `false` | `'.'` | Relative path under <br> `GITHUB_WORKSPACE` <br> to the repository | | path | `string` | `false` | `'.'` | Relative path under <br> `GITHUB_WORKSPACE` <br> to the repository |
| since\_last\_remote\_commit | `boolean` | `false` | `false` | Use the last commit on the remote <br> branch as the `base_sha` <br> (Defaults to the last commit <br> on the target branch for Pull requests <br> or the previous commit <br> on the current branch <br> for push events). <br /> NOTE: This requires <br /> `fetch-depth: 0` <br /> with `actions/checkout@v2` | | since\_last\_remote\_commit | `boolean` | `false` | `false` | Use the last commit on the remote <br> branch as the `base_sha` <br> (Defaults to the last commit <br> on the target branch for Pull requests <br> or the previous commit <br> on the current branch <br> for push events). <br /> NOTE: This requires <br /> `fetch-depth: 0` <br /> with `actions/checkout@v2` |
| use\_fork\_point | `boolean` | `false` | `false` | Finds best common ancestor <br /> between two commits <br /> to use in a three-way merge <br /> as the `base_sha` <br /> See: [git merge-base](https://git-scm.com/docs/git-merge-base#Documentation/git-merge-base.txt---fork-point). <br> NOTE: This pulls the entire commit history of the base branch | | use\_fork\_point | `boolean` | `false` | `false` | Finds best common ancestor <br /> between two commits <br /> to use in a three-way merge <br /> as the `base_sha` <br /> See: [git merge-base](https://git-scm.com/docs/git-merge-base#Documentation/git-merge-base.txt---fork-point). <br> NOTE: This pulls the entire commit history of the base branch |
| quotepath | `boolean` | `false` | `true` | Output filenames completely verbatim by setting this to `false` | | quotepath | `boolean` | `false` | `true` | Output filenames completely verbatim by setting this to `false` |
| diff\_relative | `boolean` | `false` | | Exclude changes outside the current directory and show pathnames relative to it. | | diff\_relative | `boolean` | `false` | | Exclude changes outside the current directory and show pathnames relative to it. |
| dir\_names | `boolean` | `false` | `false` | Output unique changed directories instead of the filenames. <br> NOTE: This returns `.` for <br> changed files located in the root of the project. |
## Examples ## Examples
@ -341,7 +342,7 @@ Support this project with a :star:
> NOTE: :warning: > NOTE: :warning:
> >
> * Using characters like `\n`, `%` and `\r` as separators would be [URL encoded](https://www.w3schools.com/tags/ref_urlencode.asp) > * Using characters like `\n`, `%`, `.` and `\r` as separators would be [URL encoded](https://www.w3schools.com/tags/ref_urlencode.asp)
> * Spaces in file names can introduce bugs when using bash loops. See: [#216](https://github.com/tj-actions/changed-files/issues/216) > * Spaces in file names can introduce bugs when using bash loops. See: [#216](https://github.com/tj-actions/changed-files/issues/216)
> However, this action will handle spaces in file names, with a recommendation of using a separator to prevent hidden issues. > However, this action will handle spaces in file names, with a recommendation of using a separator to prevent hidden issues.
> ![Screen Shot 2021-10-23 at 9 37 34 AM](https://user-images.githubusercontent.com/17484350/138558767-b13c90bf-a1ae-4e86-9520-70a6a4624f41.png) > ![Screen Shot 2021-10-23 at 9 37 34 AM](https://user-images.githubusercontent.com/17484350/138558767-b13c90bf-a1ae-4e86-9520-70a6a4624f41.png)

View File

@ -4,74 +4,78 @@ author: tj-actions
inputs: inputs:
token: token:
description: 'Github token' description: "Github token"
required: false required: false
default: ${{ github.token }} default: ${{ github.token }}
separator: separator:
description: 'Split character for output strings' description: "Split character for output strings"
required: false required: false
default: " " default: " "
include_all_old_new_renamed_files: include_all_old_new_renamed_files:
description: 'Include all_old_new_renamed_files output. Note this can generate a large debug output See: #501.' description: "Include all_old_new_renamed_files output. Note this can generate a large debug output See: #501."
required: false required: false
default: false default: "false"
old_new_separator: old_new_separator:
description: 'Split character for old and new filename pairs' description: "Split character for old and new filename pairs"
required: false required: false
default: "," default: ","
old_new_files_separator: old_new_files_separator:
description: 'Split character for multiple old and new filename pairs' description: "Split character for multiple old and new filename pairs"
required: false required: false
default: " " default: " "
files_from_source_file: files_from_source_file:
description: 'Source file(s) to populate the files input' description: "Source file(s) to populate the files input"
required: false required: false
default: "" default: ""
files: files:
description: 'Check for changes using only this list of files (Defaults to the entire repo)' description: "Check for changes using only this list of files (Defaults to the entire repo)"
required: false required: false
default: "" default: ""
files_separator: files_separator:
description: 'Separator used to split the files input' description: "Separator used to split the files input"
default: "\n" default: "\n"
required: false required: false
files_ignore: files_ignore:
description: 'Ignore changes to this list of files' description: "Ignore changes to this list of files"
required: false required: false
default: "" default: ""
files_ignore_separator: files_ignore_separator:
description: 'Separator used to split the files-ignore input' description: "Separator used to split the files-ignore input"
default: "\n" default: "\n"
required: false required: false
files_ignore_from_source_file: files_ignore_from_source_file:
description: 'Source file(s) to populate the files-ignore input' description: "Source file(s) to populate the files-ignore input"
required: false required: false
default: "" default: ""
sha: sha:
description: 'Specify a current commit SHA used for comparing changes' description: "Specify a current commit SHA used for comparing changes"
required: true required: true
default: ${{ github.sha }} default: ${{ github.sha }}
base_sha: base_sha:
description: 'Specify a base commit SHA on used for comparing changes' description: "Specify a base commit SHA on used for comparing changes"
required: false required: false
since_last_remote_commit: since_last_remote_commit:
description: 'Use the last commit on the remote branch as the base_sha for push event.' description: "Use the last commit on the remote branch as the base_sha for push event."
required: false required: false
default: 'false' default: "false"
path: path:
description: 'Specify a relative path under $GITHUB_WORKSPACE to locate the repository' description: "Specify a relative path under $GITHUB_WORKSPACE to locate the repository"
required: false required: false
default: '.' default: "."
use_fork_point: use_fork_point:
description: 'Finds best common ancestor between two commits to use in a three-way merge as the base_sha' description: "Finds best common ancestor between two commits to use in a three-way merge as the base_sha"
default: 'false' default: "false"
required: false required: false
quotepath: quotepath:
description: 'Output filenames completely verbatim by setting this to false' description: "Output filenames completely verbatim by setting this to false"
default: 'true' default: "true"
required: false required: false
diff_relative: diff_relative:
description: 'Exclude changes outside the current directory and show pathnames relative to it' description: "Exclude changes outside the current directory and show pathnames relative to it"
required: false
dir_names:
default: "false"
description: "Output the absolute path to the changed directories instead of the filenames"
required: false required: false
outputs: outputs:
@ -140,7 +144,7 @@ outputs:
value: ${{ steps.changed-files.outputs.other_deleted_files }} value: ${{ steps.changed-files.outputs.other_deleted_files }}
runs: runs:
using: 'composite' using: "composite"
steps: steps:
- run: | - run: |
# "Set base sha..." # "Set base sha..."
@ -207,6 +211,7 @@ runs:
INPUT_OLD_NEW_SEPARATOR: ${{ inputs.old_new_separator }} INPUT_OLD_NEW_SEPARATOR: ${{ inputs.old_new_separator }}
INPUT_OLD_NEW_FILES_SEPARATOR: ${{ inputs.old_new_files_separator }} INPUT_OLD_NEW_FILES_SEPARATOR: ${{ inputs.old_new_files_separator }}
INPUT_DIFF_RELATIVE: ${{ inputs.diff_relative }} INPUT_DIFF_RELATIVE: ${{ inputs.diff_relative }}
INPUT_DIR_NAMES: ${{ inputs.dir_names }}
branding: branding:
icon: file-text icon: file-text

View File

@ -3,6 +3,7 @@
set -eu set -eu
INPUT_SEPARATOR="${INPUT_SEPARATOR//'%'/'%25'}" INPUT_SEPARATOR="${INPUT_SEPARATOR//'%'/'%25'}"
INPUT_SEPARATOR="${INPUT_SEPARATOR//'.'/'%2E'}"
INPUT_SEPARATOR="${INPUT_SEPARATOR//$'\n'/'%0A'}" INPUT_SEPARATOR="${INPUT_SEPARATOR//$'\n'/'%0A'}"
INPUT_SEPARATOR="${INPUT_SEPARATOR//$'\r'/'%0D'}" INPUT_SEPARATOR="${INPUT_SEPARATOR//$'\r'/'%0D'}"
@ -32,7 +33,12 @@ function get_diff() {
) )
fi fi
done < <(git submodule | awk '{print $2}') done < <(git submodule | awk '{print $2}')
git diff --diff-filter="$filter" --name-only --ignore-submodules=all "$base" "$sha"
if [[ "$INPUT_DIR_NAMES" == "true" ]]; then
git diff --diff-filter="$filter" --name-only --ignore-submodules=all "$base" "$sha" | xargs -I {} dirname {} | uniq
else
git diff --diff-filter="$filter" --name-only --ignore-submodules=all "$base" "$sha"
fi
} }
function get_renames() { function get_renames() {
@ -51,7 +57,11 @@ function get_renames() {
fi fi
done < <(git submodule | awk '{print $2}') done < <(git submodule | awk '{print $2}')
git log --name-status --ignore-submodules=all "$base".."$sha" | grep -E "^R" | awk -F '\t' -v d="$INPUT_OLD_NEW_SEPARATOR" '{print $2d$3}' if [[ "$INPUT_DIR_NAMES" == "true" ]]; then
git log --name-status --ignore-submodules=all "$base".."$sha" | grep -E "^R" | awk -F '\t' -v d="$INPUT_OLD_NEW_SEPARATOR" '{print $2d$3}' | xargs -I {} dirname {} | uniq
else
git log --name-status --ignore-submodules=all "$base".."$sha" | grep -E "^R" | awk -F '\t' -v d="$INPUT_OLD_NEW_SEPARATOR" '{print $2d$3}'
fi
} }
echo "::group::changed-files" echo "::group::changed-files"
@ -103,10 +113,9 @@ else
fi fi
ALL_OTHER_CHANGED=$(get_diff "$INPUT_PREVIOUS_SHA" "$INPUT_CURRENT_SHA" "ACMR" | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}') ALL_OTHER_CHANGED=$(get_diff "$INPUT_PREVIOUS_SHA" "$INPUT_CURRENT_SHA" "ACMR" | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
UNIQUE_ALL_CHANGED=$(echo "${ALL_CHANGED}" | awk '{gsub(/\|/,"\n"); print $0;}' | awk '!a[$0]++' | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
if [[ -n "${UNIQUE_ALL_CHANGED}" ]]; then if [[ -n "${ALL_CHANGED}" ]]; then
echo "::debug::Matching changed files: ${UNIQUE_ALL_CHANGED}" echo "::debug::Matching changed files: ${ALL_CHANGED}"
echo "::set-output name=any_changed::true" echo "::set-output name=any_changed::true"
else else
echo "::set-output name=any_changed::false" echo "::set-output name=any_changed::false"
@ -115,8 +124,8 @@ else
OTHER_CHANGED="" OTHER_CHANGED=""
if [[ -n $ALL_OTHER_CHANGED ]]; then if [[ -n $ALL_OTHER_CHANGED ]]; then
if [[ -n "$UNIQUE_ALL_CHANGED" ]]; then if [[ -n "$ALL_CHANGED" ]]; then
OTHER_CHANGED=$(echo "${ALL_OTHER_CHANGED}|${UNIQUE_ALL_CHANGED}" | awk '{gsub(/\|/,"\n"); print $0;}' | sort | uniq -u | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}') OTHER_CHANGED=$(echo "${ALL_OTHER_CHANGED}|${ALL_CHANGED}" | awk '{gsub(/\|/,"\n"); print $0;}' | sort | uniq -u | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
else else
OTHER_CHANGED=$ALL_OTHER_CHANGED OTHER_CHANGED=$ALL_OTHER_CHANGED
fi fi
@ -128,15 +137,14 @@ else
echo "::debug::Non Matching changed files: ${OTHER_CHANGED}" echo "::debug::Non Matching changed files: ${OTHER_CHANGED}"
echo "::set-output name=only_changed::false" echo "::set-output name=only_changed::false"
echo "::set-output name=other_changed_files::$OTHER_CHANGED" echo "::set-output name=other_changed_files::$OTHER_CHANGED"
elif [[ -n "${UNIQUE_ALL_CHANGED}" ]]; then elif [[ -n "${ALL_CHANGED}" ]]; then
echo "::set-output name=only_changed::true" echo "::set-output name=only_changed::true"
fi fi
ALL_OTHER_MODIFIED=$(get_diff "$INPUT_PREVIOUS_SHA" "$INPUT_CURRENT_SHA" "ACMRD" | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}') ALL_OTHER_MODIFIED=$(get_diff "$INPUT_PREVIOUS_SHA" "$INPUT_CURRENT_SHA" "ACMRD" | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
UNIQUE_ALL_MODIFIED=$(echo "${ALL_MODIFIED}" | awk '{gsub(/\|/,"\n"); print $0;}' | awk '!a[$0]++' | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
if [[ -n "${UNIQUE_ALL_MODIFIED}" ]]; then if [[ -n "${ALL_MODIFIED}" ]]; then
echo "::debug::Matching modified files: ${UNIQUE_ALL_MODIFIED}" echo "::debug::Matching modified files: ${ALL_MODIFIED}"
echo "::set-output name=any_modified::true" echo "::set-output name=any_modified::true"
else else
echo "::set-output name=any_modified::false" echo "::set-output name=any_modified::false"
@ -145,8 +153,8 @@ else
OTHER_MODIFIED="" OTHER_MODIFIED=""
if [[ -n $ALL_OTHER_MODIFIED ]]; then if [[ -n $ALL_OTHER_MODIFIED ]]; then
if [[ -n "$UNIQUE_ALL_MODIFIED" ]]; then if [[ -n "$ALL_MODIFIED" ]]; then
OTHER_MODIFIED=$(echo "${ALL_OTHER_MODIFIED}|${UNIQUE_ALL_MODIFIED}" | awk '{gsub(/\|/,"\n"); print $0;}' | sort | uniq -u | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}') OTHER_MODIFIED=$(echo "${ALL_OTHER_MODIFIED}|${ALL_MODIFIED}" | awk '{gsub(/\|/,"\n"); print $0;}' | sort | uniq -u | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
else else
OTHER_MODIFIED=$ALL_OTHER_MODIFIED OTHER_MODIFIED=$ALL_OTHER_MODIFIED
fi fi
@ -158,15 +166,14 @@ else
echo "::debug::Non Matching modified files: ${OTHER_MODIFIED}" echo "::debug::Non Matching modified files: ${OTHER_MODIFIED}"
echo "::set-output name=only_modified::false" echo "::set-output name=only_modified::false"
echo "::set-output name=other_modified_files::$OTHER_MODIFIED" echo "::set-output name=other_modified_files::$OTHER_MODIFIED"
elif [[ -n "${UNIQUE_ALL_MODIFIED}" ]]; then elif [[ -n "${ALL_MODIFIED}" ]]; then
echo "::set-output name=only_modified::true" echo "::set-output name=only_modified::true"
fi fi
ALL_OTHER_DELETED=$(get_diff "$INPUT_PREVIOUS_SHA" "$INPUT_CURRENT_SHA" D | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}') ALL_OTHER_DELETED=$(get_diff "$INPUT_PREVIOUS_SHA" "$INPUT_CURRENT_SHA" D | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
UNIQUE_ALL_DELETED=$(echo "${DELETED}" | awk '{gsub(/\|/,"\n"); print $0;}' | awk '!a[$0]++' | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
if [[ -n "${UNIQUE_ALL_DELETED}" ]]; then if [[ -n "${DELETED}" ]]; then
echo "::debug::Matching deleted files: ${UNIQUE_ALL_DELETED}" echo "::debug::Matching deleted files: ${DELETED}"
echo "::set-output name=any_deleted::true" echo "::set-output name=any_deleted::true"
else else
echo "::set-output name=any_deleted::false" echo "::set-output name=any_deleted::false"
@ -175,8 +182,8 @@ else
OTHER_DELETED="" OTHER_DELETED=""
if [[ -n $ALL_OTHER_DELETED ]]; then if [[ -n $ALL_OTHER_DELETED ]]; then
if [[ -n "$UNIQUE_ALL_DELETED" ]]; then if [[ -n "$DELETED" ]]; then
OTHER_DELETED=$(echo "${ALL_OTHER_DELETED}|${UNIQUE_ALL_DELETED}" | awk '{gsub(/\|/,"\n"); print $0;}' | sort | uniq -u | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}') OTHER_DELETED=$(echo "${ALL_OTHER_DELETED}|${DELETED}" | awk '{gsub(/\|/,"\n"); print $0;}' | sort | uniq -u | awk -v d="|" '{s=(NR==1?s:s d)$0}END{print s}')
else else
OTHER_DELETED=$ALL_OTHER_DELETED OTHER_DELETED=$ALL_OTHER_DELETED
fi fi
@ -188,7 +195,7 @@ else
echo "::debug::Non Matching deleted files: ${OTHER_DELETED}" echo "::debug::Non Matching deleted files: ${OTHER_DELETED}"
echo "::set-output name=only_deleted::false" echo "::set-output name=only_deleted::false"
echo "::set-output name=other_deleted_files::$OTHER_DELETED" echo "::set-output name=other_deleted_files::$OTHER_DELETED"
elif [[ -n "${UNIQUE_ALL_DELETED}" ]]; then elif [[ -n "${DELETED}" ]]; then
echo "::set-output name=only_deleted::true" echo "::set-output name=only_deleted::true"
fi fi