Skip to content

Commit 363c77c

Browse files
authored
Merge pull request #56 from hiero-ledger/feature/pr-checks
feat: PR checks
2 parents 2cb933f + 280fde4 commit 363c77c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pr-checks.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "PR Title Check"
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
statuses: write
8+
contents: read
9+
10+
jobs:
11+
title-check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check PR Title
15+
uses: step-security/conventional-pr-title-action@19fb561b33015fd2184055a05ce5a3bcf2ba3f54
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)