-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new GitHub workflows and setup Ollama project
In this commit, several GitHub workflows have been created for release, pull request, merge events, and added few new files for an Ollama project setup. This commit also includes the creation of a new .NET project: Frank.SemanticKernel.Examples.Core and other relative files by utilizing the VSCode editor. Other crucial elements comprised in this update are Dockerfile, appsettings.json, and more, detailing the config settings needed.
- Loading branch information
1 parent
fcf646a
commit cd6d0a8
Showing
24 changed files
with
934 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Merge Workflow | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
merge_job: | ||
name: Merge Job | ||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
uses: frankhaugen/Workflows/.github/workflows/dotnet-publish-preview.yml@main | ||
secrets: inherit |
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,13 @@ | ||
name: Pull Request Workflow | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
pull_request_job: | ||
name: Pull Request Job | ||
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' | ||
uses: frankhaugen/Workflows/.github/workflows/dotnet-pull-request.yml@main | ||
secrets: inherit |
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,14 @@ | ||
name: Release Workflow | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release_job: | ||
name: Release Job | ||
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch' | ||
uses: frankhaugen/Workflows/.github/workflows/dotnet-publish-release.yml@main | ||
secrets: inherit | ||
|
Oops, something went wrong.