Skip to content

Commit 7706624

Browse files
authored
Merge pull request #409 from TykTechnologies/feat/TT-15867/jira-linter
[TT-15867] rollout new Jira linter
2 parents dcd7e08 + a5f73db commit 7706624

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Validate PR against Jira
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened, edited]
6+
7+
concurrency:
8+
group: jira-validator-${{ github.event.pull_request.number }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
validate:
13+
if: ${{ !github.event.pull_request.draft }}
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Validate Jira ticket
17+
uses: TykTechnologies/jira-linter@main
18+
with:
19+
jira-base-url: 'https://tyktech.atlassian.net'
20+
jira-api-token: ${{ secrets.JIRA_TOKEN }}
21+

0 commit comments

Comments
 (0)