Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
frankhaugen committed Dec 30, 2023
0 parents commit 1b4670d
Show file tree
Hide file tree
Showing 13 changed files with 933 additions and 0 deletions.
364 changes: 364 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions .github/workflows/merge.yml
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
13 changes: 13 additions & 0 deletions .github/workflows/pull-request.yml
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
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
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

Loading

0 comments on commit 1b4670d

Please sign in to comment.