Skip to content

feat(replication): persist dlq task in standby cluster #3354

feat(replication): persist dlq task in standby cluster

feat(replication): persist dlq task in standby cluster #3354

Workflow file for this run

name: Semantic Pull Request
on:
pull_request:
types:
- opened
- edited
- synchronize
jobs:
semantic-pr:
name: Validate PR title follows conventional commit format
runs-on: ubuntu-latest
# TODO: Remove this once we commit to conventional commits
continue-on-error: true
steps:
- name: Validate PR title
id: lint_pr_title
uses: amannn/action-semantic-pull-request@v6.1.1
with:
# Allow standard conventional commit types
types: |
fix
feat
docs
style
refactor
perf
test
chore
ci
build
revert
# TODO: Remove this once we've decided on scopes
requireScope: false
# Skip validation for certain labels if needed
ignoreLabels: |
skip-commit-format
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}