treasure-data / trino-client-ruby

Trino/Presto client library for Ruby
Apache License 2.0
70 stars 44 forks source link

CI: Do not trigger "push" event on pull requests #95

Closed exoego closed 1 year ago

exoego commented 1 year ago

Purpose

To make CI faster.

Overview

On pull requests, GitHub Actions are executed both on push and pull_request event at this moment. This is redundant because same CI job is executed twice. See https://github.com/treasure-data/trino-client-ruby/pull/94 as example

After this PR, push event is triggered only when main and master branch (when PR is merged).

Checklist