Skip to content

Commit d31235a

Browse files
Adding standard items for these repos
1 parent 0df036a commit d31235a

6 files changed

Lines changed: 154 additions & 0 deletions

File tree

.gitattributes

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
* text=auto
2+
*.sh text eol=lf
3+
*.bat text eol=crlf
4+
5+
*.cs text diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
*.ps1 text eol=crlf
13+
*.psm1 text eol=crlf
14+
*.psd1 text eol=crlf
15+
*.ps1xml text eol=crlf
16+
*.pssc text eol=crlf
17+
*.psrc text eol=crlf
18+
*.cdxml text eol=crlf
19+
20+
*.yaml text
21+
*.yml text
22+
*.yaml diff=yaml
23+
*.yml diff=yaml
24+
*.yaml merge=yaml
25+
*.yml merge=yaml
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Custom issue template
3+
about: Describe this issue template's purpose here.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Milestone Closure Trigger
2+
3+
on:
4+
milestone:
5+
types: [closed]
6+
7+
jobs:
8+
create-release-notes:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Repository
12+
uses: actions/checkout@v3
13+
14+
# Your additional steps go here. For example:
15+
- name: Create Release Notes
16+
uses: mod-posh/Issue2ReleaseNotes@v0.0.2.31
17+
with:
18+
milestone_number: ${{ github.event.milestone.number }}
19+
verbose: 'verbose'
20+
github_token: ${{ secrets.GITHUB_TOKEN }}

CONTRIBUTING.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Contributing to CreatePowerShellModule
2+
3+
## Introduction
4+
5+
Thank you for your interest in contributing to CreatePowerShellModule! We value the contributions from the community and are glad that you're interested in helping improve this project. This document outlines the guidelines for contributing, which help maintain the project's quality and keep the process efficient and respectful.
6+
7+
## How to Contribute
8+
9+
There are many ways to contribute to this project:
10+
11+
- **Reporting Bugs**: If you find a bug, please open an issue in the repository using the bug report template.
12+
- **Suggesting Enhancements**: If you have ideas on improving the project, open an issue using the feature request template.
13+
- **Code Contributions**: You can contribute to the codebase through pull requests. Please read the section below on how to submit a pull request.
14+
15+
## Pull Request Process
16+
17+
1. **Fork the Repository**: Start by forking the repository to your own GitHub account.
18+
2. **Clone the Fork**: Clone your fork to your local machine.
19+
3. **Create a New Branch**: For each new feature or fix, create a separate branch.
20+
4. **Make Your Changes**: Implement your changes or fixes in the branch, adhering to the coding standards and guidelines of the project.
21+
5. **Test Your Changes**: Ensure your changes don't break any existing functionality.
22+
6. **Commit Your Changes**: Commit your changes with a clear and descriptive message.
23+
7. **Push to Your Fork**: Push your changes to your fork on GitHub.
24+
8. **Submit a Pull Request**: Open a pull request from your fork to the main repository. Fill in the pull request template with all relevant information.
25+
9. **Review and Merge**: Your pull request will be reviewed by the maintainers and, if deemed appropriate, merged into the project.
26+
27+
## Coding Standards and Guidelines
28+
29+
- Follow the coding style and best practices as much as possible.
30+
- Include comments in your code where necessary.
31+
- Update the documentation to reflect your changes.
32+
33+
## Community Guidelines
34+
35+
We expect all contributors to be respectful and constructive in their communication. Harassment, trolling, and abuse are strictly prohibited.
36+
37+
## Feedback and Questions
38+
39+
If you have any questions or feedback about contributing, open an issue for discussion.
40+
41+
Thank you for your contributions, and we look forward to your participation in making CreatePowerShellModule better!

0 commit comments

Comments
 (0)