TT-15462 - Track 404s with Pump: feat: send 404 requests to analytics/Pump when track_404_logs enabled #228
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 against Jira | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| concurrency: | |
| group: jira-validator-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| if: ${{ !github.event.pull_request.draft }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Validate Jira ticket | |
| uses: TykTechnologies/jira-linter@main | |
| with: | |
| jira-base-url: 'https://tyktech.atlassian.net' | |
| jira-api-token: ${{ secrets.JIRA_TOKEN }} |