Skip to content

Commit

Permalink
ci(workflows): run only on push and pulls to master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Mar 29, 2021
1 parent 05a7d90 commit d993574
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ name: CI

on:
push:
branches:
- master
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
- "*.md"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ name: CodeQL Analysis

on:
push:
branches:
- master
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
- "*.md"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: Check Markdown for Broken Links

on:
push:
branches:
- master
paths:
- "**/*.md"
pull_request:
branches:
- master
paths:
- "**/*.md"
schedule:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Spellcheck

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
spellcheck:
Expand Down

0 comments on commit d993574

Please sign in to comment.