feat: add metrics_optional_domains and metrics_optional_packages for users to configure optional domains #206
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 Title Lint | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - edited | |
| merge_group: | |
| branches: | |
| - main | |
| types: | |
| - checks_requested | |
| permissions: | |
| contents: read | |
| jobs: | |
| commit-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install conventional-commit linter | |
| run: npm install @commitlint/config-conventional @commitlint/cli | |
| - name: Run commitlint on PR title | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| # Echo from env variable to avoid bash errors with extra characters | |
| run: echo "$PR_TITLE" | npx commitlint --verbose |