Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/pr_template_branch_to_dev.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## Description

<!-- Provide a concise summary of what this PR does and why it's needed. -->

[Brief description of changes and purpose]

## Changes

<!-- List the key changes made in this PR. Use bullet points for clarity. -->

### New Features
- [Feature 1]
- [Feature 2]

### Bug Fixes
- [Fix 1 - describe issue]
- [Fix 2 - describe issue]

### Improvements
- [Improvement 1]
- [Improvement 2]

### Other
- [Any other changes]

## Additional Information

<!-- Include any other context, screenshots, deployment notes, or caveats reviewers should know. -->

### Issues
<!-- Link to any relevant issues -->
- Fixes #num
- Closes #num
- Related to #num

### Checklist
- [ ] Code follows project standards
- [ ] Documentation updated if required
- [ ] No breaking changes introduced
- [ ] Tests pass (if applicable)

---

**Note**: Keep changes focused and minimal. Don't add unrelated "improvements".
57 changes: 57 additions & 0 deletions .github/pr_template_dev_to_main.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Merge dev into main

## Summary
<!-- High-level overview of what this PR contains -->
[brief summary of major changes].

## Changes
<!-- Add Sections like code or docs depending on the changes -->
<!-- Order pull requests from lowest to highest number, aka first #8 then #9 then #10 -->

<!--
Available sections (use what's relevant, keep this order):
### Features
### Fixes
### Refactor
### Docs
### Workflow
### Other
-->

### Features
* `PullRequestUrl` by @`username`
* `PullRequestTitle`
* Key detail 1
* Key detail 2

### Fixes
* `PullRequestUrl` by @`username`
* `PullRequestTitle`
* What was fixed
* Impact of fix


<!-- Example: -->
<!--
# Merge dev into main
## Changes

### Feature
* https://github.com/Akeoott/cssync/pull/12 by @Akeoott
* Refactor core with logging, config system, and enhanced CLI
* Remove separate cssync.Cli project and integrate CLI functionality directly into backend
* Replace System.Text.Json with Newtonsoft.Json for flexible JObject-based configuration
* Implement dynamic config sections (Variables, Timers) instead of rigid dictionaries
* Add comprehensive argument parsing (--help, --status, --init) with categorized help system
* Introduce config-aware execution loop that responds to runtime changes
* Improve cross-platform terminal detection (Windows/Unix compatibility)
* Update README, .editorconfig, and .gitignore to reflect new architecture
* Add detailed configuration documentation via Resources.cs
### Docs and Workflow
* https://github.com/Akeoott/cssync/pull/8 by @Akeoott
* Improve documentation and add PR template
* Add some small changes to editorconfig, readme and vscode settings.
* Mainly for improving workspace configuration and adding more detail to readme.

etc...
-->
38 changes: 3 additions & 35 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,4 @@
## Description
Please go to the `Preview` tab and select the appropriate sub-template:

<!-- Provide a concise summary of what this PR does and why it's needed. -->

Description...

## Changes

<!-- List the key changes made in this PR. Use bullet points for clarity. -->

### New Features
-

### Bug Fixes
-

### Improvements
-

### Other
-

## Additional Information

<!-- Include any other context, screenshots, deployment notes, or caveats reviewers should know. -->

### Issues
<!-- Link to any relevant issues -->
- fixes #num
- closes #num
- resolves #num

### Checklist
- [ ] Code follows project standards
- [ ] Documentation updated if required
- [ ] Program compiles with no errors
* [Template for branch => dev](?expand=1&template=pr_template_branch_to_dev.md)
* [Template for dev => main](?expand=1&template=pr_template_dev_to_main.md)
Loading