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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
path: artifacts/*.nupkg

- name: Publish to NuGet.org
if: ${{ github.ref == 'refs/heads/develop' }}
if: ${{ github.ref == 'refs/heads/main' }}
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: |
Expand Down
14 changes: 7 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ Thank you for your interest in contributing to this project! This guide will hel
Always create a new branch for your work:

```bash
git checkout develop
git pull upstream develop
git checkout main
git pull upstream main
git checkout -b feat/your-feature-name
```

Expand Down Expand Up @@ -124,7 +124,7 @@ git commit -m "docs: update DynamoDB setup instructions"

```bash
git fetch upstream
git rebase upstream/develop
git rebase upstream/main
```

### 6. Push to Your Fork
Expand Down Expand Up @@ -187,14 +187,14 @@ public async Task DebitGiftCard_WithSufficientBalance_Succeeds()
3. **Create a Pull Request**:
- Go to your fork on GitHub
- Click "New Pull Request"
- Set base branch to `develop`
- Set base branch to `main`
- Fill in the PR template

4. **PR Requirements**:
- All tests must pass (enforced by CI)
- Code coverage should not decrease significantly
- At least one maintainer approval required
- No merge conflicts with `develop`
- No merge conflicts with `main`

### PR Title Format

Expand Down Expand Up @@ -245,10 +245,10 @@ Maintainers handle releases following this process:
<Version>1.3.0</Version>
```

2. **Commit and merge to develop**:
2. **Commit and merge to main**:
```bash
git commit -m "chore: bump version to 1.3.0"
git push origin develop
git push origin main
```

3. **Create and push tag**:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://dev.azure.com/jacques-kang/EventSourcing/_apis/build/status/jacqueskang-eventsourcing-ci?branchName=develop)](https://dev.azure.com/jacques-kang/EventSourcing/_build/latest?definitionId=11&branchName=develop)
[![Build Status](https://dev.azure.com/jacques-kang/EventSourcing/_apis/build/status/jacqueskang-eventsourcing-ci?branchName=main)](https://dev.azure.com/jacques-kang/EventSourcing/_build/latest?definitionId=11&branchName=main)
# EventSourcing

A .NET Core event sourcing framework.
Expand Down