chore(ci): add artifact security scanning to release pipelines #579
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] | |
| branches: | |
| - main | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| check-title: | |
| runs-on: | |
| group: databricks-protected-runner-group | |
| labels: linux-ubuntu-latest | |
| name: Conventional Commit Title | |
| steps: | |
| - name: Validate PR title | |
| uses: ytanikin/pr-conventional-commits@fda730cb152c05a849d6d84325e50c6182d9d1e9 # 1.5.1 | |
| with: | |
| task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert","style","build"]' | |
| add_label: 'false' |