Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid running the workflow twice on PR pushes #700

Merged
merged 1 commit into from Mar 28, 2022
Merged

Commits on Mar 28, 2022

  1. Avoid running the workflow twice on PR pushes

    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.
    mjpieters committed Mar 28, 2022
    Configuration menu
    Copy the full SHA
    58bc59b View commit details
    Browse the repository at this point in the history