Skip to content

Commit 046c660

Browse files
authored
[Testing:Developer] Update .github folder
[Testing:Developer] Update .github folder
2 parents 1d96305 + df44762 commit 046c660

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### Please check if the PR fulfills these requirements:
2+
3+
* [ ] Tests for the changes have been added/updated (if possible)
4+
* [ ] Documentation has been updated/added if relevant
5+
6+
### What is the current behavior?
7+
<!-- List issue if it fixes/closes/implements one using the "Fixes #<number>" or "Closes #<number>" syntax -->
8+
9+
### What is the new behavior?
10+
11+
### Other information?
12+
<!-- Is this a breaking change? -->
13+
<!-- How did you test -->

.github/workflows/pr_title.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
- uses: submitty/action-pr-title@main

0 commit comments

Comments
 (0)