feat: YDBOPS-11509 monium_cluster #3454
This file contains hidden or 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: PR Title | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - edited | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| verify_title: | |
| name: Verify Title | |
| runs-on: ubuntu-latest | |
| if: ${{github.event.action != 'checks_requested'}} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install Packages | |
| run: npm ci | |
| - name: Run Commitlint | |
| run: echo "${{github.event.pull_request.title}}" | npx commitlint |