1
0
mirror of synced 2025-12-29 18:00:57 -05:00
Files
docs/data/reusables/actions/workflows/triggering-a-workflow-paths3.md

437 B

When all the path names match patterns in paths-ignore, the workflow will not run. If any path names do not match patterns in paths-ignore, even if some path names match the patterns, the workflow will run.

A workflow with the following path filter will only run on push events that include at least one file outside the docs directory at the root of the repository.

on:
  push:
    paths-ignore:
      - 'docs/**'