Skip to content

Commit 7584399

Browse files
Merge branch 'timothycoleman/the-guide'
2 parents b04fecb + a5b10ca commit 7584399

File tree

4,156 files changed

+327213
-210346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,156 files changed

+327213
-210346
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,5 @@
22
"version": 1,
33
"isRoot": true,
44
"tools": {
5-
"dotnet-retire": {
6-
"version": "4.0.1",
7-
"commands": [
8-
"dotnet-retire"
9-
]
10-
},
11-
"minver-cli": {
12-
"version": "2.2.0",
13-
"commands": [
14-
"minver"
15-
]
16-
},
17-
"gpr": {
18-
"version": "0.1.122",
19-
"commands": [
20-
"gpr"
21-
]
22-
}
235
}
24-
}
6+
}

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ testresults/
88
**/.dockerignore*
99
**/*.user
1010
**/.idea/
11-
.vs/
11+
**/*.vs/
1212
.vscode/
1313
certs/

.github/CODEOWNERS

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Each line is a file pattern followed by one or more owners.
2+
3+
# database-mergers team is the default owner for everything in
4+
# the repo. Unless a later match takes precedence.
5+
* @EventStore/database-mergers
6+
7+
# documentation and database-mergers teams own any files in the 'docs'
8+
# directory at the root of the repository and any of its
9+
# subdirectories.
10+
/docs/ @EventStore/documentation @EventStore/database-mergers
11+
12+
# documentation and database-mergers teams own any markdown files
13+
# in the root of the repository (README, CONTRIBUTING, LICENSING, etc.)
14+
# Either team will be able to approve PRs changing these files.
15+
/*.md @EventStore/documentation @EventStore/database-mergers
16+
17+
# eventstore-admin team owns the codeowners file to prevent
18+
# unauthorized changes to it.
19+
/.github/CODEOWNERS @EventStore/eventstore-admin
20+
21+
# protected because it contains license rules
22+
/qodana.yaml @EventStore/eventstore-admin

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug report
33
about: Create a report to help us improve
44
title: ''
5-
labels: kind/bug
5+
labels: 'bug'
66
assignees: ''
77

88
---
@@ -31,7 +31,7 @@ If applicable, please attach your node configuration, logs or any screenshots.
3131

3232
- Operating system:
3333

34-
- EventStore client version (if applicable):
34+
- EventStore client library and version (if applicable):
3535

3636
**Additional context**
3737
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Feature request
33
about: Suggest an idea for this project
44
title: ''
5-
labels: kind/enhancement
5+
labels: enhancement
66
assignees: ''
77

88
---

.github/labeler.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add 'documentation' label if all changes are in the docs directory or to the README file
2+
documentation:
3+
- all:
4+
- changed-files:
5+
- all-globs-to-all-files:
6+
- docs/*
7+
- README.md
8+
9+
# Add 'ignore-for-release' label if all changes are:
10+
# - changes to workflows, codeowners, etc (.github)
11+
# - changes to tests (*.Tests)
12+
ignore-for-release:
13+
- all:
14+
- changed-files:
15+
- all-globs-to-all-files:
16+
- .github/*
17+
- src/*.Tests/*

.github/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
categories:
6+
- title: Added
7+
labels:
8+
- enhancement
9+
- title: Fixed
10+
labels:
11+
- bug
12+
- title: Changed
13+
labels:
14+
- "*"
15+
- title: Deprecated
16+
labels:
17+
- deprecated
18+
- title: Breaking Changes
19+
labels:
20+
- breaking
21+
- title: Documentation
22+
labels:
23+
- documentation
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build Alpine Container
2+
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- "docs/**"
7+
- "samples/**"
8+
- "**.md"
9+
push:
10+
branches:
11+
- master
12+
- release/*
13+
tags:
14+
- oss-v*
15+
- v*
16+
paths-ignore:
17+
- "docs/**"
18+
- "samples/**"
19+
- "**.md"
20+
21+
jobs:
22+
build-container:
23+
uses: ./.github/workflows/build-container-reusable.yml
24+
with:
25+
container-runtime: alpine
26+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build Bookworm Slim Container
2+
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- "docs/**"
7+
- "samples/**"
8+
- "**.md"
9+
push:
10+
branches:
11+
- master
12+
- release/*
13+
tags:
14+
- oss-v*
15+
- v*
16+
paths-ignore:
17+
- "docs/**"
18+
- "samples/**"
19+
- "**.md"
20+
21+
jobs:
22+
build-container:
23+
uses: ./.github/workflows/build-container-reusable.yml
24+
with:
25+
container-runtime: bookworm-slim
26+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build Jammy Container
2+
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- "docs/**"
7+
- "samples/**"
8+
- "**.md"
9+
push:
10+
branches:
11+
- master
12+
- release/*
13+
tags:
14+
- oss-v*
15+
- v*
16+
paths-ignore:
17+
- "docs/**"
18+
- "samples/**"
19+
- "**.md"
20+
21+
jobs:
22+
build-container:
23+
uses: ./.github/workflows/build-container-reusable.yml
24+
with:
25+
container-runtime: jammy
26+

0 commit comments

Comments
 (0)