This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
chore(deps): update external dependency minor (minor) #1698
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: | ||
branches: | ||
- main | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- ready_for_review | ||
- synchronize | ||
concurrency: | ||
group: ${{ github.head_ref }}-pr-validate | ||
cancel-in-progress: true | ||
jobs: | ||
pr-metadata: | ||
uses: bjw-s/charts/.github/workflows/pr-metadata.yaml@main | ||
Check failure on line 20 in .github/workflows/pr-validate.yaml
|
||
pre-commit-check: | ||
uses: bjw-s/charts/.github/workflows/pre-commit-check.yaml@main | ||
needs: | ||
- pr-metadata | ||
with: | ||
modifiedFiles: ${{ needs.pr-metadata.outputs.addedOrModifiedFiles }} | ||
charts-changelog: | ||
uses: bjw-s/charts/.github/workflows/charts-changelog.yaml@main | ||
needs: | ||
- pr-metadata | ||
- pre-commit-check | ||
with: | ||
isRenovatePR: ${{ needs.pr-metadata.outputs.isRenovatePR }} | ||
modifiedCharts: ${{ needs.pr-metadata.outputs.addedOrModifiedCharts }} | ||
charts-lint: | ||
uses: bjw-s/charts/.github/workflows/charts-lint.yaml@main | ||
needs: | ||
- pr-metadata | ||
- charts-changelog | ||
with: | ||
checkoutCommit: ${{ needs.charts-changelog.outputs.commitHash }} | ||
chartChangesDetected: ${{ needs.pr-metadata.outputs.addedOrModified }} | ||
charts-test: | ||
uses: bjw-s/charts/.github/workflows/charts-test.yaml@main | ||
needs: | ||
- pr-metadata | ||
- charts-changelog | ||
with: | ||
checkoutCommit: ${{ needs.charts-changelog.outputs.commitHash }} | ||
chartChangesDetected: ${{ needs.pr-metadata.outputs.addedOrModified }} |