Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid running the workflow twice on PR pushes (aio-libs#700)
When someone force-pushes to a PR or adds a new commit, the workflow would run _twice_, as both `push` and `pull_request` events would trigger. The default for `types` is `[opened, reopened, synchronize]`; the latter is the type that overlaps with `push`. In addition, existing runs for the same PR are cancelled whenever a push is made.
- Loading branch information