Skip to content

Commit df70ca5

Browse files
authored
v2.8.0
v2.8.0
2 parents 2e80a33 + d4cf577 commit df70ca5

33 files changed

+709
-417
lines changed

.cfconfig.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,15 @@
55
"inspectTemplate":"always",
66
"requestTimeout":"0,0,0,90",
77
"robustExceptionEnabled":true,
8-
"whitespaceManagement":"white-space-pref"
9-
}
8+
"whitespaceManagement":"white-space-pref",
9+
"mailServers":[
10+
{
11+
"tls":false,
12+
"password":"",
13+
"port":25,
14+
"username":"",
15+
"ssl":false,
16+
"smtp":"localhost"
17+
}
18+
]
19+
}

.github/CODE_OF_CONDUCT.MD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Code of Conduct
2+
3+
Please see it in our [Contributing Guidelines](../CONTRIBUTING.md#code-of-conduct).
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
---
5+
6+
<!-- Thanks for reporting an issue! Please fill out the blanks below. -->
7+
8+
## What are the steps to reproduce this issue?
9+
10+
1.
11+
2.
12+
3.
13+
14+
## What happens?
15+
16+
17+
18+
## What were you expecting to happen?
19+
20+
21+
22+
## Any logs, error output, etc?
23+
24+
25+
26+
## Any other comments?
27+
28+
29+
30+
## What versions are you using?
31+
32+
**Operating System:**
33+
**Package Version:**
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature Request
3+
about: Request a new feature or enhancement
4+
---
5+
6+
<!-- Thanks for taking the time to recommend a feature! Please fill out the form below -->
7+
8+
## Summary
9+
10+
<!-- High level description of what this feature is -->
11+
12+
## Detailed Description
13+
14+
<!-- Lets get into the weeds here -->
15+
16+
## Possible Implementation Ideas
17+
18+
<!-- If you already have some idea of how to implement this, this would be the place to put it -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Description
2+
3+
Please include a summary of the changes and which issue(s) is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
4+
5+
**Please note that all PRs must have tests attached to them**
6+
7+
IMPORTANT: Please review the [CONTRIBUTING.md](../CONTRIBUTING.md) file for detailed contributing guidelines.
8+
9+
## Issues
10+
11+
All PRs must have an accompanied issue. Please make sure you created it and linked it here.
12+
13+
## Type of change
14+
15+
Please delete options that are not relevant.
16+
17+
- [ ] Bug Fix
18+
- [ ] Improvement
19+
- [ ] New Feature
20+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
21+
- [ ] This change requires a documentation update
22+
23+
## Checklist
24+
25+
- [ ] My code follows the style guidelines of this project [cfformat](../.cfformat.json)
26+
- [ ] I have commented my code, particularly in hard-to-understand areas
27+
- [ ] I have made corresponding changes to the documentation
28+
- [ ] I have added tests that prove my fix is effective or that my feature works
29+
- [ ] New and existing unit tests pass locally with my changes

.github/SECURITY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Security Policy
2+
3+
Please see it in our [Contributing Guidelines](../CONTRIBUTING.md#security-vulnerabilities).

.github/SUPPORT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Support & Help
2+
3+
Please see it in our [Contributing Guidelines](../CONTRIBUTING.md#support-questions).

.github/workflows/ci.yml

Lines changed: 0 additions & 119 deletions
This file was deleted.

.github/workflows/gh-release.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/pr.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,24 @@ on:
66
- "main"
77
- "master"
88
- "development"
9+
- "releases/v*"
910
pull_request:
1011
branches:
12+
- "releases/v*"
1113
- development
1214

1315
jobs:
1416
tests:
1517
uses: ./.github/workflows/tests.yml
18+
secrets: inherit
1619

17-
# Format PR
18-
format:
19-
name: Format
20+
formatCheck:
21+
name: Checks Source Code Formatting
2022
runs-on: ubuntu-20.04
2123
steps:
2224
- name: Checkout Repository
23-
uses: actions/checkout@v3.2.0
25+
uses: actions/checkout@v3
2426

2527
- uses: Ortus-Solutions/[email protected]
2628
with:
27-
cmd: run-script format
28-
29-
- name: Commit Format Changes
30-
uses: stefanzweifel/git-auto-commit-action@v4
31-
with:
32-
commit_message: Apply cfformat changes
29+
cmd: run-script format:check

0 commit comments

Comments
 (0)