File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 # Filter patterns cheat sheet:
99 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
1010 - " example-branch/*"
11+
12+ # ## https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request
13+ pull_request :
14+ # # The default is to trigger on the following types of events:
15+ types :
16+ - opened
17+ - synchronize
18+ - reopened
1119 paths :
1220 # include markdown files
1321 - " 02-mechanics-core/filters/*.md"
1422 # Exclude txt files
1523 - " !02-mechanics-core/filters/*.txt"
1624
17- # ## https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request
18- # pull_request:
19- # ## The default is to trigger on the following types of events:
20- # types:
21- # - opened
22- # - synchronize
23- # - reopened
24-
2525 # ## https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule
2626 # schedule:
2727 # - cron: "0 0 * * *" # Midnight UTC
You can’t perform that action at this time.
0 commit comments