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:
parent
64c4d89739
commit
a644d59c73
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue