Skip to content

Commit 4fce3f9

Browse files
committed
Fix build.cs and regenerate workflow
1 parent 48816ba commit 4fce3f9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/continous-integration.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ on:
2020
push:
2121
branches:
2222
- master
23+
- feature/*
2324
pull_request:
2425
branches:
25-
- *
26+
- master
2627

2728
jobs:
2829
ubuntu-latest:

build/Build.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
[GitHubActions("continous-integration",
2222
GitHubActionsImage.UbuntuLatest,
2323
AutoGenerate = true,
24-
OnPushBranches = new[] { "master" },
25-
OnPullRequestBranches= new[] { "*" },
24+
OnPushBranches = new[] { "master","feature/*" },
25+
OnPullRequestBranches = new[] { "master" },
2626
InvokedTargets = new[] { nameof(ContinousIntegration) },
2727
ImportSecrets = new[] { nameof(NugetApiKey) }
2828
)]

0 commit comments

Comments
 (0)