From a644d59c737d4a1430e2fc26ccac5cfe9facf57a Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Fri, 26 Jan 2024 14:49:30 +0100 Subject: [PATCH] Update target branches for GitHub Actions The target branches for GitHub Action on pull requests have been updated. Specifically, the wildcard 'v3*' is removed from the 'OnPullRequestBranches' attribute. Now, actions will only be triggered for pull requests on the 'main' branch. --- build/Build.CI.GitHubActions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build.CI.GitHubActions.cs b/build/Build.CI.GitHubActions.cs index e317e2222..a6e559699 100644 --- a/build/Build.CI.GitHubActions.cs +++ b/build/Build.CI.GitHubActions.cs @@ -8,7 +8,7 @@ using Nuke.Components; [CustomGitHubActions( "pr", GitHubActionsImage.UbuntuLatest, - OnPullRequestBranches = ["main", "v3*"], + OnPullRequestBranches = ["main"], OnPullRequestIncludePaths = ["**/*"], OnPullRequestExcludePaths = ["docs/**/*", "package.json", "package-lock.json", "readme.md"], PublishArtifacts = false,