Skip to content

Commit

Permalink
CI: Don't run on .md changes in PRs, except it's the book
Browse files Browse the repository at this point in the history
  • Loading branch information
Urhengulas committed May 23, 2021
1 parent b61b489 commit fb1774f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ on:
push:
branches: [main, staging, trying]
pull_request:
branches: [ main ]
branches: [main]
# don't run CI when changing md-files, except they are part of the book
paths-ignore:
- "*.md"
- "!book/src/**"
schedule:
# runs 1 min after 2 or 1 AM (summer/winter) berlin time
- cron: '1 0 * * *'
Expand Down

0 comments on commit fb1774f

Please sign in to comment.