diff --git a/HISTORY.md b/HISTORY.md index 2034940b..87621a8d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,12 +1,33 @@ # Changelog +## [Unreleased](https://github.com/tj-actions/changed-files/tree/HEAD) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v35.5.3...HEAD) + +**Fixed bugs:** + +- \[BUG\] action fail with pull request from external branch called master [\#979](https://github.com/tj-actions/changed-files/issues/979) + +## [v35.5.3](https://github.com/tj-actions/changed-files/tree/v35.5.3) (2023-02-14) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v35...v35.5.3) + +## [v35](https://github.com/tj-actions/changed-files/tree/v35) (2023-02-14) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v35.5.2...v35) + +**Fixed bugs:** + +- Action fails on empty repo or when the specific file pattern is not found [\#976](https://github.com/tj-actions/changed-files/issues/976) + +**Merged pull requests:** + +- fix: bug with pr from forks with similar branch names [\#981](https://github.com/tj-actions/changed-files/pull/981) ([jackton1](https://github.com/jackton1)) +- Upgraded to v35.5.2 [\#977](https://github.com/tj-actions/changed-files/pull/977) ([jackton1](https://github.com/jackton1)) + ## [v35.5.2](https://github.com/tj-actions/changed-files/tree/v35.5.2) (2023-02-09) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v35...v35.5.2) - -## [v35](https://github.com/tj-actions/changed-files/tree/v35) (2023-02-09) - -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v35.5.1...v35) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v35.5.1...v35.5.2) **Fixed bugs:** @@ -515,7 +536,7 @@ ## [v34.3.3](https://github.com/tj-actions/changed-files/tree/v34.3.3) (2022-11-08) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v34.3.2...v34.3.3) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v34.3.1...v34.3.3) **Fixed bugs:** @@ -530,13 +551,13 @@ - chore: update readme [\#784](https://github.com/tj-actions/changed-files/pull/784) ([jackton1](https://github.com/jackton1)) - Upgraded to v34.3.2 [\#781](https://github.com/tj-actions/changed-files/pull/781) ([jackton1](https://github.com/jackton1)) -## [v34.3.2](https://github.com/tj-actions/changed-files/tree/v34.3.2) (2022-11-07) - -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v34.3.1...v34.3.2) - ## [v34.3.1](https://github.com/tj-actions/changed-files/tree/v34.3.1) (2022-11-07) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v34.3.0...v34.3.1) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v34.3.2...v34.3.1) + +## [v34.3.2](https://github.com/tj-actions/changed-files/tree/v34.3.2) (2022-11-07) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v34.3.0...v34.3.2) **Fixed bugs:** @@ -1769,7 +1790,7 @@ ## [v13](https://github.com/tj-actions/changed-files/tree/v13) (2022-02-17) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...v13) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v13) **Implemented enhancements:** @@ -1788,13 +1809,13 @@ - \[BUG\] wrong result of any\_change output [\#314](https://github.com/tj-actions/changed-files/issues/314) - \[BUG\] Investigate possible bug using since\_last\_remote\_commit when force pushing changes. [\#303](https://github.com/tj-actions/changed-files/issues/303) -## [v12.2](https://github.com/tj-actions/changed-files/tree/v12.2) (2021-12-30) - -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v2.0.1...v12.2) - ## [v2.0.1](https://github.com/tj-actions/changed-files/tree/v2.0.1) (2021-12-30) -[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.1...v2.0.1) +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.2...v2.0.1) + +## [v12.2](https://github.com/tj-actions/changed-files/tree/v12.2) (2021-12-30) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v12.1...v12.2) **Merged pull requests:** diff --git a/diff-sha.sh b/diff-sha.sh index 747e9889..3e3a81fc 100644 --- a/diff-sha.sh +++ b/diff-sha.sh @@ -168,7 +168,8 @@ else if [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" != "true" ]]; then echo "::debug::Fetching remote target branch..." # shellcheck disable=SC2086 - git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" origin "$TARGET_BRANCH:$TARGET_BRANCH" 1>/dev/null + git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" origin +refs/heads/"$TARGET_BRANCH":refs/remotes/origin/"$TARGET_BRANCH" 1>/dev/null + git branch --track "$TARGET_BRANCH" origin/"$TARGET_BRANCH" 1>/dev/null || true fi fi @@ -212,13 +213,13 @@ else if [[ -f .git/shallow ]]; then # check if the merge base is in the local history - if ! git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA"; then + if ! git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA" 1>/dev/null 2>&1; then echo "::debug::Merge base is not in the local history, fetching remote target branch..." # Fetch more of the target branch history until the merge base is found for i in {1..10}; do # shellcheck disable=SC2086 git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" origin "$TARGET_BRANCH:$TARGET_BRANCH" 1>/dev/null - if git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA"; then + if git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA" 1>/dev/null 2>&1; then break fi echo "::debug::Merge base is not in the local history, fetching remote target branch again..."