Skip to content

chore(deps): update helm release kube-prometheus-stack to v66 #631

chore(deps): update helm release kube-prometheus-stack to v66

chore(deps): update helm release kube-prometheus-stack to v66 #631

Workflow file for this run

name: Check commit message format
on:
pull_request:
jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: '20.9'
- name: Install commitlint
run: |
npm install @commitlint/[email protected] @commitlint/[email protected]
echo "module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'body-max-line-length': [2, 'always', 1000]
}
}" > commitlint.config.js
- name: Validate PR commits with commitlint
run: |
npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose