Skip to content

Commit

Permalink
build: enable manually running workflows (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite authored Sep 20, 2024
1 parent a263330 commit 087a830
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: .NET
name: build-and-test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches: [ main, target-entity-framework-8 ]
workflow_dispatch:

jobs:
unit-tests:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/integration-tests-on-emulator.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: .NET
name: integration-tests-on-emulator

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches: [ main, target-entity-framework-8 ]
workflow_dispatch:

jobs:
integration-tests-on-emulator:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/integration-tests-on-production.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: .NET
name: integration-tests-on-production

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches: [ main, target-entity-framework-8 ]
workflow_dispatch:

jobs:
check-env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/samples.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: .NET
name: samples

on:
pull_request:
branches: [ main ]
branches: [ main, target-entity-framework-8 ]
workflow_dispatch:

jobs:
run-samples:
Expand Down

0 comments on commit 087a830

Please sign in to comment.