graphql-python / graphql-server

This is the core package for using GraphQL in a custom server easily
MIT License
120 stars 72 forks source link

chore: prevent duplicate CI runs #117

Open kiendang opened 1 year ago

kiendang commented 1 year ago

We have this in our workflows

on: [push, pull_request]

This is redundant since when someone pushes to a PR branch, it triggers both push and pull_request synchronized which makes the action runs twice. Checking every PR CI and you will see we have the every check run twice (push) and (pull_request).

Just on: push is enough.

kiendang commented 1 year ago

Yup that makes perfect sense.