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

Ensure workflow is triggered on pull request updates #2

Merged
merged 2 commits into from
Feb 6, 2024

Commits on Feb 6, 2024

  1. Ensure workflow is triggered on pull request update

    Ensure `synchronize` event also trigger the workflow, as relying solely on push events failed for pull requests from forked repositories.
    
    See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
    Ndpnt committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    1a843d5 View commit details
    Browse the repository at this point in the history
  2. Prevent multiple triggers of the workflow on pull request

    Push triggers outside of pull requests are omitted intentionally to prevent duplicate workflow runs. Since this repository mainly involves managing service declarations rather than altering software features, running tests on every commit of every branch isn't seen as essential compared to traditional software.
    Ndpnt committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    02b75a6 View commit details
    Browse the repository at this point in the history