feat(4allportal): add samba to 4allportal chart #1435
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 Pull Request | |
"on": | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
env: | |
CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Conventional commit check | |
uses: cocogitto/cocogitto-action@v3 | |
- name: Validate PR Name | |
run: .github/scripts/validate-pullrequest.sh | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} |