chore(main): [bot] release base-cluster:4.12.0 #1942
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: Validate and label Pull Request | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
jobs: | |
getChangedChart: | |
if: ${{ !startsWith(github.head_ref, 'release-please--') }} | |
uses: ./.github/workflows/get-changed-chart.yaml | |
validateCommits: | |
if: ${{ !startsWith(github.head_ref, 'release-please--') }} | |
name: Validate commits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Conventional commit check | |
uses: cocogitto/cocogitto-action@v3 | |
validateAndLabelPR: | |
if: ${{ !startsWith(github.head_ref, 'release-please--') }} | |
name: Validate and label PR | |
runs-on: ubuntu-latest | |
needs: getChangedChart | |
env: | |
CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: helm/[email protected] | |
- name: Conventional commit check | |
uses: cocogitto/cocogitto-action@v3 | |
with: | |
check: false | |
- run: .github/scripts/validate-pullrequest.sh | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
GITHUB_TOKEN: ${{ github.token }} | |
ISSUE_NUMBER: ${{ github.event.number }} | |
CHANGED_CHART: ${{ needs.getChangedChart.outputs.chart }} |