Skip to content

Commit 0e3c451

Browse files
authored
Merge pull request #187 from NHSDigital/feature/CCM-17448_enforce_jira_in_coomits
CCM-17448: Updating to use new action
2 parents 3009a36 + 3668ca7 commit 0e3c451

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "4. PR Title Check"
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize, edited]
6+
branches:
7+
- main
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
check-pr-title:
14+
name: "Check PR title"
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: "Checkout code"
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
19+
- name: "Check PR title format"
20+
uses: ./.github/actions/check-pr-title-format
21+
with:
22+
title: ${{ github.event.pull_request.title }}

0 commit comments

Comments
 (0)