33d470fec5
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dorny/paths-filter](https://redirect.github.com/dorny/paths-filter) | action | major | `de90cc6` → `fbd0ab8` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>dorny/paths-filter (dorny/paths-filter)</summary> ### [`v4`](https://redirect.github.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v400) [Compare Source](https://redirect.github.com/dorny/paths-filter/compare/v3...v4) - [Update action runtime to node24](https://redirect.github.com/dorny/paths-filter/pull/294) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvd29ya2Zsb3dzIiwicmVub3ZhdGUvY29udGFpbmVyIiwicmVub3ZhdGUvZ2l0aHViLWFjdGlvbiIsInJlbm92YXRlL2dpdGh1Yi1yZWxlYXNlIiwidHlwZS9tYWpvciJdfQ==-->
52 lines
1.7 KiB
YAML
52 lines
1.7 KiB
YAML
name: "Collect changes"
|
|
description: "Collects and stores changed files/charts"
|
|
|
|
outputs:
|
|
changesDetected:
|
|
description: "Whether or not changes to charts have been detected"
|
|
value: ${{ steps.filter.outputs.addedOrModified }}
|
|
addedOrModifiedFiles:
|
|
description: "A list of the files changed"
|
|
value: ${{ steps.filter.outputs.addedOrModified_files }}
|
|
addedOrModifiedCharts:
|
|
description: "A list of the charts changed"
|
|
value: ${{ steps.filter-charts.outputs.addedOrModified }}
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Collect changed files
|
|
uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4
|
|
id: filter
|
|
with:
|
|
list-files: shell
|
|
filters: |
|
|
addedOrModified:
|
|
- added|modified: 'charts/stable/*/**'
|
|
- added|modified: 'charts/incubator/*/**'
|
|
- added|modified: 'charts/dev/*/**'
|
|
- added|modified: 'charts/test/*/**'
|
|
- added|modified: 'charts/stable/*/**'
|
|
- added|modified: 'charts/stable/*/**'
|
|
|
|
- name: Collect changed charts
|
|
if: |
|
|
steps.filter.outputs.addedOrModified == 'true'
|
|
id: filter-charts
|
|
shell: bash
|
|
run: |
|
|
CHARTS=()
|
|
PATHS=(${{ steps.filter.outputs.addedOrModified_files }})
|
|
# Get only the chart paths
|
|
for CHARTPATH in "${PATHS[@]}"
|
|
do
|
|
IFS='/' read -r -a path_parts <<< "${CHARTPATH}"
|
|
CHARTS+=("${path_parts[0]}/${path_parts[1]}/${path_parts[2]}")
|
|
done
|
|
|
|
# Remove duplicates
|
|
CHARTS=( `printf "%s\n" "${CHARTS[@]}" | sort -u` )
|
|
# Set output to changed charts
|
|
echo "Changed charts: ${CHARTS[*]}"
|
|
printf "::set-output name=addedOrModified::%s\n" "${CHARTS[*]}"
|