fix(IDX): don't run system tests with 'local' by default #17670
This file contains 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 Validation | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
# Copied & adapted (job name, version label) from | |
# https://github.com/ytanikin/pr-conventional-commits?tab=readme-ov-file#usage-with-labeling-where-label-is-just-a-task-type | |
# validates the title and adds a label based on the PR type | |
permissions: | |
pull-requests: write | |
jobs: | |
validate-pr-title: | |
name: PR Conventional Commit Validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Validate PR Title | |
uses: ytanikin/pr-conventional-commits@8d258b54939f6769fcd935a52b96d6b0383a00c5 # v1.2.0 | |
with: | |
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]' |