Skip to content

Commit b79ec7b

Browse files
authored
add title check (#29)
Co-authored-by: Barb Cutler <Barb Cutler>
1 parent d4a0beb commit b79ec7b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/pr_title_check.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Submitty PR Title Check'
2+
on:
3+
pull_request:
4+
# check when PR
5+
# * is created,
6+
# * title is edited, and
7+
# * new commits are added (to ensure failing title blocks merging)
8+
types: [ opened, reopened, edited, synchronize ]
9+
10+
jobs:
11+
title-check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
#
15+
# pull request titles format rules here:
16+
# https://submitty.org/developer/how_to_contribute#how-to-make-a-pull-request-pr-to-submitty
17+
#
18+
# [<TYPE>:<MODULE>] <SUBJECT>
19+
#
20+
- uses: submitty/action-pr-title@main

0 commit comments

Comments
 (0)