Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions 03-core-features/filters/included-file.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Path Filter Demo: Included File

## Purpose
This `.md` file demonstrates GitHub Actions **path filters**.

## How it works
The workflow [03-core-features--04-triggers-and-filters.yaml](../.github/workflows/03-core-features--04-triggers-and-filters.yaml) triggers on `pull_request` events when:

```
paths:
- '03-core-features/filters/*.md' # ✅ Includes this file
- '!03-core-features/filters/*.txt' # ❌ Excludes excluded-file.txt
```

**Commit changes to this file** → Workflow triggers on PR.

**See also:** [Core Features Overview](../README.md)

---
*Example file for GitHub Actions learning repo.*