Check Chart PR Review #1531
Workflow file for this run
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: Check Chart PR Review | |
on: | |
pull_request_review: | |
paths: | |
- "addons/**" | |
- "addons-cluster/**" | |
types: [submitted] | |
jobs: | |
check-addons-helm-pr: | |
name: check addons helm | |
if: github.event.review.state == 'approved' | |
strategy: | |
fail-fast: false | |
matrix: | |
registry: [ "", "dockerhub", "aliyun" ] | |
uses: apecloud/apecloud-cd/.github/workflows/[email protected] | |
with: | |
CHART_DIR: "addons" | |
APECD_REF: "v0.1.68" | |
SET_REGISTRY: "${{ matrix.registry }}" | |
secrets: inherit | |
check-addons-cluster-helm-pr: | |
name: check addons cluster helm | |
if: github.event.review.state == 'approved' | |
uses: apecloud/apecloud-cd/.github/workflows/[email protected] | |
with: | |
CHART_DIR: "addons-cluster" | |
APECD_REF: "v0.1.68" | |
secrets: inherit |