chore(deps): update ghcr.io/geek-cookbook/filebrowser docker tag to v2.27.0 #3209
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Pull Request: Validate" | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- ready_for_review | |
- synchronize | |
concurrency: | |
group: ${{ github.head_ref }}-pr-validate | |
cancel-in-progress: true | |
jobs: | |
pr-metadata: | |
uses: ./.github/workflows/pr-metadata.yaml | |
pre-commit-check: | |
uses: ./.github/workflows/pre-commit-check.yaml | |
needs: | |
- pr-metadata | |
with: | |
modifiedFiles: ${{ needs.pr-metadata.outputs.addedOrModifiedFiles }} | |
charts-lint: | |
uses: ./.github/workflows/charts-lint.yaml | |
needs: | |
- pr-metadata | |
with: | |
checkoutCommit: ${{ github.sha }} | |
chartsToLint: ${{ needs.pr-metadata.outputs.chartsToLint }} | |
isRenovatePR: ${{ needs.pr-metadata.outputs.isRenovatePR }} | |
# these won't work currently because myprecious is a library chart | |
# charts-test: | |
# uses: ./.github/workflows/charts-test.yaml | |
# needs: | |
# - pr-metadata | |
# with: | |
# checkoutCommit: ${{ github.sha }} | |
# chartsToTest: ${{ needs.pr-metadata.outputs.chartsToInstall }} | |
# library-charts-test: | |
# uses: ./.github/workflows/charts-test.yaml | |
# needs: | |
# - pr-metadata | |
# with: | |
# checkoutCommit: ${{ github.sha }} | |
# chartsToTest: |- | |
# ${{ | |
# ( | |
# contains(fromJSON(needs.pr-metadata.outputs.addedOrModifiedCharts), 'library/common') && | |
# '["other/app-template"]' | |
# ) || '[]' | |
# }} | |
# overrideDeps: |- | |
# [ | |
# {"name": "common", "repository": "file://../../library/common", "version": "*"} | |
# ] |