-
-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop-v1' into rasmus/explicit-persistence-selection
- Loading branch information
Showing
61 changed files
with
1,163 additions
and
1,180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: pull-requests | ||
|
||
on: | ||
push: | ||
branches: [ develop-v1 ] | ||
pull_request: | ||
branches: [ develop-v1 ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pipeline: | ||
uses: ./.github/workflows/pipeline.yaml | ||
with: | ||
version: "1.1.0-pr${{ github.event.number }}-b${{ github.run_number }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: release | ||
|
||
on: | ||
push: | ||
branches: [ release-v1 ] | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
jobs: | ||
pipeline: | ||
uses: ./.github/workflows/pipeline.yaml | ||
with: | ||
bake-convention: 'Release' | ||
environment: 'release' | ||
version: "1.1.0" | ||
secrets: | ||
nuget-api-key: ${{ secrets.NUGET_APIKEY }} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
7 changes: 4 additions & 3 deletions
7
.github/workflows/test-reports.yml → .github/workflows/test-reports.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
geteventflow.net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: Dos and don't | ||
title: Dos and don'ts | ||
--- | ||
|
||
# Do's and don'ts | ||
|
@@ -35,11 +35,10 @@ event. | |
{ | ||
"Username": "root", | ||
"PasswordHash": "1234567890ABCDEF", | ||
"EMail": "[email protected]", | ||
"EMail": "[email protected]" | ||
} | ||
``` | ||
|
||
|
||
### Keep old event types | ||
|
||
Keep in mind that you need to keep the event types in your code for as | ||
|
Oops, something went wrong.