You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -58,6 +58,52 @@ Once you push, the documentation will be automatically refreshed in about one mi
58
58
If you need to rebuild the documentation locally or set up the Github workflow from scratch, please refer to [Setup_Documentation_And_Deployment.md](Setup_Documentation_And_Deployment.md).
59
59
60
60
61
+
### Contributing via pull requests
62
+
63
+
We welcome contributions from the community! If you'd like to contribute to this project, please follow these steps:
64
+
65
+
1.**Fork the Repository**
66
+
67
+
Click the "Fork" button at the top right of this repository's page on GitHub to create your own copy.
68
+
69
+
2.**Clone Your Fork**
70
+
71
+
Clone your forked repository to your local machine:
3. Create a New Branch Create a new branch for your changes:
78
+
79
+
```bash
80
+
git checkout -b feature/your-feature-name
81
+
```
82
+
83
+
4. Commit Your Changes
84
+
```bash
85
+
git add .
86
+
git commit -m "Add feature: brief description of your changes"
87
+
```
88
+
89
+
5. Push to Your Fork
90
+
```bash
91
+
git push origin feature/your-feature-name
92
+
```
93
+
94
+
6. Create a Pull Request
95
+
96
+
- Go to the original repo on GitHub
97
+
- Click on "Pull requests" and then the "New pull request" button
98
+
- Choose your fork and the branch you created
99
+
- Click "Create pull request"
100
+
- Provide a title and description for your pull request
101
+
102
+
7. Wait for Review The project maintainers will review your pull request. They may ask for changes or clarifications.
103
+
104
+
8. Once approved, a project maintainer will merge your pull request.
105
+
106
+
61
107
## Summary of Recent Papers on Multi-Objective Alignment
62
108
For convenience, we also list of recent papers focused on multi-objective alignment. While this list is not exhaustive, we encourage contributions to enrich it further. Feel free to add any relevant papers or resources that you believe would benefit the community.
0 commit comments