Skip to content

Commit 596514f

Browse files
committed
🔧 added CONTRIBUTING.md
1 parent 32a195a commit 596514f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/beta.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ name: beta
33
on:
44
push:
55
branches:
6-
- master
6+
- dev
77
workflow_dispatch: { }
88

99
jobs:
1010
build:
11-
if: startsWith(github.event.head_commit.message, '[beta]')
1211
runs-on: ubuntu-latest
1312
env:
1413
VERSION: $( echo ${{ github.event.head_commit.id }} | cut -c1-7 )

CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Contributing to Rush
2+
3+
Thank you for your interest in contributing to Rush! We appreciate your support.
4+
5+
## How to Contribute
6+
1. **Open an Issue:** Before starting any work, please open an issue on GitHub. This allows us to discuss the proposed changes, ensure they align with the project's goals, and avoid duplicate work.
7+
2. **Fork the Repository:** Fork the repository to your own GitHub account.
8+
3. **Create a Branch:** Create a new branch for your feature or bug fix. Use a descriptive name, such as `feat/add-new-feature` or `fix/resolve-issue-123`.
9+
4. **Make Your Changes:** Make your changes to the codebase.
10+
5. **Submit a Pull Request:** Once you're ready, submit a pull request from your branch to the `dev` branch of the main repository. Please reference the issue you created in your pull request description.
11+
12+
## Pull Request Guidelines
13+
* Ensure your code follows the existing style and conventions.
14+
* Write clear and concise commit messages.
15+
* Make sure your changes are well-tested.
16+
17+
I'll review your pull request as soon as possible. Thank you for your contribution!

0 commit comments

Comments
 (0)