allow add extra volumes and mounts in Helm chart #1401
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: Conventional Commits check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: commitlint (install) | |
run: | | |
npm install -g @commitlint/cli @commitlint/config-conventional | |
echo 'module.exports = {extends: ["@commitlint/config-conventional"]}' > commitlint.config.js | |
- name: commitlint (run) | |
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose |