Skip to content

Commit 0f925b0

Browse files
authored
Merge pull request #81 from eclipse-tractusx/feat/add-pr-template
feat: Create PULL_REQUEST_TEMPLATE.md
2 parents ebf8292 + 42ede55 commit 0f925b0

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## WHAT
2+
3+
_Briefly describe what your PR changes, which features it adds/modifies._
4+
5+
## WHY
6+
7+
_Briefly state why the change was necessary._
8+
9+
## FURTHER NOTES
10+
11+
_List other areas of code that have changed but are not necessarily linked to the main feature. This could be method signature changes, package declarations, bugs that were encountered and were fixed inline, etc._
12+
13+
Closes # <-- _insert Issue number if one exists_

.github/workflows/verify.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5151
- name: Verify the MD footer
5252
run: |-
53-
cmd="grep -riL \"SPDX-License-Identifier: CC-BY-4.0\" --include=\*.md --exclude-dir={\*\openapi} $(find . -mindepth 2 -type f)"
53+
cmd="grep -riL \"SPDX-License-Identifier: CC-BY-4.0\" --include=\*.md $(find . -mindepth 2 -type f -not -path "./.github/*")"
5454
violations=$(eval $cmd | wc -l)
5555
if [[ $violations -ne 0 ]] ; then
5656
echo "$violations files without license headers were found:";

0 commit comments

Comments
 (0)