Skip to content

Commit

Permalink
don't trigger ci on create events. (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
khajavi authored Sep 18, 2023
1 parent 5cf6efc commit 4116a7c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:
branches:
- main
pull_request: {}
create: {}
jobs:
build:
name: Build
Expand Down
3 changes: 1 addition & 2 deletions zio-sbt-ci/src/main/scala/zio/sbt/ZioSbtCiPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,7 @@ object ZioSbtCiPlugin extends AutoPlugin {
Trigger.WorkflowDispatch(),
Trigger.Release(Seq("published")),
Trigger.Push(branches = enabledBranches.map(Branch.Named)),
Trigger.PullRequest(),
Trigger.Create()
Trigger.PullRequest()
),
jobs =
buildJobs ++ lintJobs ++ testJobs ++ updateReadmeJobs ++ reportSuccessful ++ releaseJobs ++ postReleaseJobs
Expand Down

0 comments on commit 4116a7c

Please sign in to comment.