Feature/shahbazhunzai2024 patch 1 #70
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 check naming convention | |
| on: | |
| pull_request: | |
| types: ['opened', 'edited', 'reopened', 'synchronize'] | |
| jobs: | |
| pr-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: seferov/pr-lint-action@master | |
| with: | |
| title-regex: '^TAU-\d+\s.+' | |
| error-message: 'Add Ticket ID to your title e.g. "TAU-1"' | |
| scan-pr-changes: | |
| runs-on: ubuntu-latest | |
| name: Annotates pull request with metadata | |
| steps: | |
| - name: Annotate PR | |
| uses: tau-github-actions-for-testing/tau-own-action-pull-request@main | |
| with: | |
| owner: ${{ github.repository_owner }} | |
| repo: ${{ github.event.repository.name }} | |
| pr_number: ${{ github.event.number }} | |
| token: ${{ secrets.PAT_TOKEN }} |