Skip to content

Commit 887ea25

Browse files
authored
Initial commit
0 parents  commit 887ea25

6 files changed

Lines changed: 771 additions & 0 deletions

File tree

.github/pull_request_template.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Pull Request
2+
3+
<!--
4+
Please make sure to have read the CONTRIBUTING.md guidelines.
5+
-->
6+
7+
## Description
8+
9+
<!--
10+
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
11+
12+
Fixes # (issue)
13+
-->
14+
15+
## Type of change
16+
17+
<!--
18+
Please delete options that are not relevant.
19+
-->
20+
21+
- [ ] Bug fix (non-breaking change which fixes an issue)
22+
- [ ] New feature (non-breaking change which adds functionality)
23+
- [ ] Documentation update
24+
- [ ] Code style update
25+
- [ ] Refactoring

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
on:
3+
push:
4+
branches: ["develop"]
5+
pull_request:
6+
branches: ["develop"]
7+
jobs:
8+
Build:
9+
if: github.repository == 'YourRepositoryNameHere'
10+
name: Build
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
checks: write
15+
pull-requests: write
16+
steps:
17+
- name: Check out the repo
18+
uses: actions/checkout@v4
19+
20+
- name: Perform commit linting
21+
uses: wagoid/commitlint-github-action@v6

ATTRIBUTIONS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Dependencies
2+
3+
This project makes use of the following dependencies:
4+
5+
| Dependency Name | Website | License | License Text URL |
6+
| --------------- | ------- | ------- | ---------------- |
7+
| | | | |

0 commit comments

Comments
 (0)