3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-17 23:44:46 +00:00

Merge pull request #679 from lpulley/set-output-github-output

This commit is contained in:
Tonye Jack 2022-10-12 14:34:34 -06:00 committed by GitHub
commit 291d397b90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 40 additions and 36 deletions

View file

@ -24,7 +24,7 @@ jobs:
echo '${{ steps.changed-files.outputs.all_changed_files }}' echo '${{ steps.changed-files.outputs.all_changed_files }}'
- id: set-matrix - id: set-matrix
run: echo "::set-output name=matrix::{\"container\":${{ steps.changed-files.outputs.all_changed_files }}}" run: echo "matrix={\"container\":${{ steps.changed-files.outputs.all_changed_files }}}" >> "$GITHUB_OUTPUT"
matrix-job: matrix-job:
name: Run Matrix Job name: Run Matrix Job

View file

@ -132,9 +132,11 @@ if [[ -n "$PREVIOUS_SHA" && -n "$CURRENT_SHA" && "$PREVIOUS_SHA" == "$CURRENT_SH
exit 1 exit 1
fi fi
echo "::set-output name=target_branch::$TARGET_BRANCH" cat <<EOF >> "$GITHUB_OUTPUT"
echo "::set-output name=current_branch::$CURRENT_BRANCH" target_branch=$TARGET_BRANCH
echo "::set-output name=previous_sha::$PREVIOUS_SHA" current_branch=$CURRENT_BRANCH
echo "::set-output name=current_sha::$CURRENT_SHA" previous_sha=$PREVIOUS_SHA
current_sha=$CURRENT_SHA
EOF
echo "::endgroup::" echo "::endgroup::"

View file

@ -18,7 +18,7 @@ if [[ -n "$INPUT_SINCE" ]]; then
if [[ -z "$BASE_SHA" ]]; then if [[ -z "$BASE_SHA" ]]; then
echo "::warning::The BASE_SHA for date '$INPUT_SINCE' couldn't be determined." echo "::warning::The BASE_SHA for date '$INPUT_SINCE' couldn't be determined."
fi fi
echo "::set-output name=base_sha::$BASE_SHA" echo "base_sha=$BASE_SHA" >> "$GITHUB_OUTPUT"
elif [[ -n "$INPUT_BASE_SHA" ]]; then elif [[ -n "$INPUT_BASE_SHA" ]]; then
echo "::set-output name=base_sha::$INPUT_BASE_SHA" echo "base_sha=$INPUT_BASE_SHA" >> "$GITHUB_OUTPUT"
fi fi

View file

@ -131,9 +131,9 @@ else
if [[ -n "${ALL_CHANGED}" ]]; then if [[ -n "${ALL_CHANGED}" ]]; then
echo "::debug::Matching changed files: ${ALL_CHANGED}" echo "::debug::Matching changed files: ${ALL_CHANGED}"
echo "::set-output name=any_changed::true" echo "any_changed=true" >> "$GITHUB_OUTPUT"
else else
echo "::set-output name=any_changed::false" echo "any_changed=false" >> "$GITHUB_OUTPUT"
fi fi
OTHER_CHANGED="" OTHER_CHANGED=""
@ -154,19 +154,19 @@ else
if [[ -n "${OTHER_CHANGED}" && "${OTHER_CHANGED}" != "[]" ]]; then if [[ -n "${OTHER_CHANGED}" && "${OTHER_CHANGED}" != "[]" ]]; then
echo "::debug::Non Matching changed files: ${OTHER_CHANGED}" echo "::debug::Non Matching changed files: ${OTHER_CHANGED}"
echo "::set-output name=only_changed::false" echo "only_changed=false" >> "$GITHUB_OUTPUT"
echo "::set-output name=other_changed_files::$OTHER_CHANGED" echo "other_changed_files=$OTHER_CHANGED" >> "$GITHUB_OUTPUT"
elif [[ -n "${ALL_CHANGED}" ]]; then elif [[ -n "${ALL_CHANGED}" ]]; then
echo "::set-output name=only_changed::true" echo "only_changed=true" >> "$GITHUB_OUTPUT"
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}')
if [[ -n "${ALL_MODIFIED}" ]]; then if [[ -n "${ALL_MODIFIED}" ]]; then
echo "::debug::Matching modified files: ${ALL_MODIFIED}" echo "::debug::Matching modified files: ${ALL_MODIFIED}"
echo "::set-output name=any_modified::true" echo "any_modified=true" >> "$GITHUB_OUTPUT"
else else
echo "::set-output name=any_modified::false" echo "any_modified=false" >> "$GITHUB_OUTPUT"
fi fi
OTHER_MODIFIED="" OTHER_MODIFIED=""
@ -187,19 +187,19 @@ else
if [[ -n "${OTHER_MODIFIED}" && "$OTHER_MODIFIED" != "[]" ]]; then if [[ -n "${OTHER_MODIFIED}" && "$OTHER_MODIFIED" != "[]" ]]; then
echo "::debug::Non Matching modified files: ${OTHER_MODIFIED}" echo "::debug::Non Matching modified files: ${OTHER_MODIFIED}"
echo "::set-output name=only_modified::false" echo "only_modified=false" >> "$GITHUB_OUTPUT"
echo "::set-output name=other_modified_files::$OTHER_MODIFIED" echo "other_modified_files=$OTHER_MODIFIED" >> "$GITHUB_OUTPUT"
elif [[ -n "${ALL_MODIFIED}" ]]; then elif [[ -n "${ALL_MODIFIED}" ]]; then
echo "::set-output name=only_modified::true" echo "only_modified=true" >> "$GITHUB_OUTPUT"
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}')
if [[ -n "${DELETED}" ]]; then if [[ -n "${DELETED}" ]]; then
echo "::debug::Matching deleted files: ${DELETED}" echo "::debug::Matching deleted files: ${DELETED}"
echo "::set-output name=any_deleted::true" echo "any_deleted=true" >> "$GITHUB_OUTPUT"
else else
echo "::set-output name=any_deleted::false" echo "any_deleted=false" >> "$GITHUB_OUTPUT"
fi fi
OTHER_DELETED="" OTHER_DELETED=""
@ -220,10 +220,10 @@ else
if [[ -n "${OTHER_DELETED}" && "${OTHER_DELETED}" != "[]" ]]; then if [[ -n "${OTHER_DELETED}" && "${OTHER_DELETED}" != "[]" ]]; then
echo "::debug::Non Matching deleted files: ${OTHER_DELETED}" echo "::debug::Non Matching deleted files: ${OTHER_DELETED}"
echo "::set-output name=only_deleted::false" echo "only_deleted=false" >> "$GITHUB_OUTPUT"
echo "::set-output name=other_deleted_files::$OTHER_DELETED" echo "other_deleted_files=$OTHER_DELETED" >> "$GITHUB_OUTPUT"
elif [[ -n "${DELETED}" ]]; then elif [[ -n "${DELETED}" ]]; then
echo "::set-output name=only_deleted::true" echo "only_deleted=true" >> "$GITHUB_OUTPUT"
fi fi
if [[ "$INPUT_JSON" == "false" ]]; then if [[ "$INPUT_JSON" == "false" ]]; then
ADDED=$(echo "${ADDED}" | awk '{gsub(/\|/,"\n"); print $0;}' | awk -v d="$INPUT_SEPARATOR" '{s=(NR==1?s:s d)$0}END{print s}') ADDED=$(echo "${ADDED}" | awk '{gsub(/\|/,"\n"); print $0;}' | awk -v d="$INPUT_SEPARATOR" '{s=(NR==1?s:s d)$0}END{print s}')
@ -267,19 +267,21 @@ if [[ $INPUT_INCLUDE_ALL_OLD_NEW_RENAMED_FILES == "true" ]]; then
echo "::debug::All old & new renamed files: $ALL_OLD_NEW_RENAMED" echo "::debug::All old & new renamed files: $ALL_OLD_NEW_RENAMED"
fi fi
echo "::set-output name=added_files::$ADDED" cat <<EOF >> "$GITHUB_OUTPUT"
echo "::set-output name=copied_files::$COPIED" added_files=$ADDED
echo "::set-output name=deleted_files::$DELETED" copied_files=$COPIED
echo "::set-output name=modified_files::$MODIFIED" deleted_files=$DELETED
echo "::set-output name=renamed_files::$RENAMED" modified_files=$MODIFIED
echo "::set-output name=type_changed_files::$TYPE_CHANGED" renamed_files=$RENAMED
echo "::set-output name=unmerged_files::$UNMERGED" type_changed_files=$TYPE_CHANGED
echo "::set-output name=unknown_files::$UNKNOWN" unmerged_files=$UNMERGED
echo "::set-output name=all_changed_and_modified_files::$ALL_CHANGED_AND_MODIFIED" unknown_files=$UNKNOWN
echo "::set-output name=all_changed_files::$ALL_CHANGED" all_changed_and_modified_files=$ALL_CHANGED_AND_MODIFIED
echo "::set-output name=all_modified_files::$ALL_MODIFIED" all_changed_files=$ALL_CHANGED
all_modified_files=$ALL_MODIFIED
EOF
if [[ $INPUT_INCLUDE_ALL_OLD_NEW_RENAMED_FILES == "true" ]]; then if [[ $INPUT_INCLUDE_ALL_OLD_NEW_RENAMED_FILES == "true" ]]; then
echo "::set-output name=all_old_new_renamed_files::$ALL_OLD_NEW_RENAMED" echo "all_old_new_renamed_files=$ALL_OLD_NEW_RENAMED" >> "$GITHUB_OUTPUT"
fi fi
echo "::endgroup::" echo "::endgroup::"

View file

@ -18,7 +18,7 @@ if [[ -n "$INPUT_UNTIL" ]]; then
if [[ -z "$SHA" ]]; then if [[ -z "$SHA" ]]; then
echo "::warning::The SHA for date '$INPUT_UNTIL' couldn't be determined, falling back to the current sha." echo "::warning::The SHA for date '$INPUT_UNTIL' couldn't be determined, falling back to the current sha."
fi fi
echo "::set-output name=sha::$SHA" echo "sha=$SHA" >> "$GITHUB_OUTPUT"
else else
echo "::set-output name=sha::$INPUT_SHA" echo "sha=$INPUT_SHA" >> "$GITHUB_OUTPUT"
fi fi