Compare commits
12 Commits
v35.7.11-s
...
v35.7.12-s
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2be7c3758f | ||
|
|
b109d83a62 | ||
|
|
1a9b8b6fb3 | ||
|
|
b109d82bbf | ||
|
|
2ec76db56c | ||
|
|
bfa633d828 | ||
|
|
5c78c9fe10 | ||
|
|
d6508dfc02 | ||
|
|
2f5a1b0ae2 | ||
|
|
16ac07d309 | ||
|
|
a4648f3cb8 | ||
|
|
0302ff21cd |
2
.github/workflows/submodule-sync.yml
vendored
2
.github/workflows/submodule-sync.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
git submodule update --remote --recursive
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v4.2.4
|
||||
uses: peter-evans/create-pull-request@v5.0.0
|
||||
with:
|
||||
title: "Updated submodule"
|
||||
labels: "merge when passing"
|
||||
|
||||
2
.github/workflows/sync-release-version.yml
vendored
2
.github/workflows/sync-release-version.yml
vendored
@@ -50,7 +50,7 @@ jobs:
|
||||
- name: Run git-cliff
|
||||
uses: tj-actions/git-cliff@v1
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v4.2.4
|
||||
uses: peter-evans/create-pull-request@v5.0.0
|
||||
with:
|
||||
base: "main"
|
||||
labels: "merge when passing"
|
||||
|
||||
2
.github/workflows/update-readme.yml
vendored
2
.github/workflows/update-readme.yml
vendored
@@ -34,7 +34,7 @@ jobs:
|
||||
|
||||
- name: Create Pull Request
|
||||
if: failure()
|
||||
uses: peter-evans/create-pull-request@v4
|
||||
uses: peter-evans/create-pull-request@v5
|
||||
with:
|
||||
base: "main"
|
||||
labels: "merge when passing"
|
||||
|
||||
12
HISTORY.md
12
HISTORY.md
@@ -1,5 +1,17 @@
|
||||
# Changelog
|
||||
|
||||
# [35.7.11](https://github.com/tj-actions/changed-files/compare/v35.7.10...v35.7.11) - (2023-04-04)
|
||||
|
||||
## <!-- 7 -->⚙️ Miscellaneous Tasks
|
||||
|
||||
- Update sync-release-version.yml ([#1071](https://github.com/tj-actions/changed-files/issues/1071)) ([79adacd](https://github.com/tj-actions/changed-files/commit/79adacd43ea069e57037edc891ea8d33013bc3da)) - (Tonye Jack)
|
||||
|
||||
## <!-- 9 -->⬆️ Upgrades
|
||||
|
||||
- Upgraded to v35.7.10 ([#1070](https://github.com/tj-actions/changed-files/issues/1070))
|
||||
|
||||
Co-authored-by: jackton1 <jackton1@users.noreply.github.com> ([b3ee2eb](https://github.com/tj-actions/changed-files/commit/b3ee2eb875e894b8589df93053c97b8cb36fbdfa)) - (Tonye Jack)
|
||||
|
||||
# [35.7.10](https://github.com/tj-actions/changed-files/compare/v35.7.9...v35.7.10) - (2023-04-04)
|
||||
|
||||
## <!-- 7 -->⚙️ Miscellaneous Tasks
|
||||
|
||||
@@ -350,7 +350,6 @@ See [action.yml](action.yml#L264) for a list of all available keys.
|
||||
|
||||
```yaml
|
||||
...
|
||||
|
||||
- name: Get changed files and write the outputs to a json file
|
||||
id: changed-files-write-output-files-json
|
||||
uses: ./
|
||||
|
||||
@@ -255,7 +255,7 @@ runs:
|
||||
INPUT_HAS_CUSTOM_PATTERNS: ${{ steps.glob.outputs.has-custom-patterns }}
|
||||
INPUT_JSON_RAW_FORMAT: ${{ inputs.json_raw_format }}
|
||||
- name: Generate output files
|
||||
uses: tj-actions/json2file@c56bc641b77b7b29451be35949e452fcadadf0d0 # v1.4.0
|
||||
uses: tj-actions/json2file@e6872653b4c7168e64b05ee07f60c1cfce653560 # v1.4.1
|
||||
if: inputs.write_output_files == 'true'
|
||||
with:
|
||||
outputs: ${{ toJSON(steps.changed-files.outputs) }}
|
||||
|
||||
@@ -251,13 +251,13 @@ else
|
||||
|
||||
if [[ "$IS_SHALLOW" == "true" ]]; then
|
||||
# check if the merge base is in the local history
|
||||
if ! git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA" 1>/dev/null 2>&1; then
|
||||
if ! git diff --name-only --ignore-submodules=all "$PREVIOUS_SHA$DIFF$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 +refs/heads/"$TARGET_BRANCH":refs/remotes/origin/"$TARGET_BRANCH" 1>/dev/null
|
||||
if git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA" 1>/dev/null 2>&1; then
|
||||
if git diff --name-only --ignore-submodules=all "$PREVIOUS_SHA$DIFF$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..."
|
||||
|
||||
Reference in New Issue
Block a user