feat: add safety net for emitting metrics #41
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: Validate PR Meta | |
| description: Validates the title and description of the pull request. | |
| on: | |
| pull_request: | |
| types: [opened, reopened, ready_for_review, edited, synchronize] | |
| jobs: | |
| pr-meta-validation: | |
| runs-on: ubuntu-latest | |
| name: Validate PR Meta | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| sparse-checkout: | | |
| .github | |
| - name: Validate PR Title (Conventional Commits) | |
| uses: ./.github/actions/validate-pr-title | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Validate PR Description (Template) | |
| uses: ./.github/actions/validate-pr-description |