Skip to content

Commit 738951c

Browse files
committed
Merge branch 'master' of github.com:integrii/flaggy
2 parents d8b4d67 + 592068b commit 738951c

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Contributing to Flaggy
2+
3+
Thanks for your interest in improving Flaggy! The following guide outlines the standard workflow for proposing and landing a change. Following these steps helps maintainers review contributions efficiently and keeps the project healthy.
4+
5+
* **Getting Started**
6+
- **Open an issue** describing the problem you want to fix or the feature you plan to add. This gives us a chance to discuss the proposal before you start coding.
7+
- **Fork the repository** to your own GitHub account so you can develop the change independently of the main project.
8+
* **Implementing Your Change**
9+
- Make your modifications in your fork (create a topic branch if that helps keep things organized).
10+
- Add or update tests so your change is well covered.
11+
- Run the full test suite locally and ensure everything passes (`go test ./...`).
12+
* **Opening a Pull Request**
13+
- Push your updates to your fork.
14+
- Open a pull request against the main repository, referencing the issue created earlier. Include context about what the change does and any testing performed.
15+
- Participate in the review process and incorporate any requested changes. Keep your branch up to date with the main branch as needed.
16+
17+
We appreciate your contributions and look forward to collaborating with you!

go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module github.com/integrii/flaggy
22

3-
go 1.20
3+
go 1.25
4+
5+
retract (
6+
v1.6.0 // Release version was used twice, causing go proxy errors.
7+
)

0 commit comments

Comments
 (0)