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.
This commit is contained in:
Sipke Schoorstra 2024-01-26 14:49:30 +01:00
parent 64c4d89739
commit a644d59c73

View file

@ -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,