refactor: remove dropped_attribute_counts from API #1110
Workflow file for this run
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 Conventional Commit Validation | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
permissions: | |
contents: read | |
jobs: | |
validate-pr-title: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0 | |
with: | |
egress-policy: audit | |
- name: PR Conventional Commit Validation | |
uses: ytanikin/pr-conventional-commits@8267db1bacc237419f9ed0228bb9d94e94271a1d # 1.4.1 | |
with: | |
task_types: '["build","chore","ci","docs","feat","fix","perf","refactor","revert","test"]' | |
add_label: 'false' |