Skip to content

Commit

Permalink
#925: Changes to not run Github workflow actions for docs related PRs (
Browse files Browse the repository at this point in the history
  • Loading branch information
suryavirkapur authored Oct 4, 2024
1 parent 3795c7d commit 041124d
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/full-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,26 @@ name: dice-test-suite
on:
push:
branches: [master]
paths-ignore:
- "**.md"
- "docs/**"
- ".github/**"
- "**.txt"
- "**.json"
- "**.yaml"
- "**.yml"
- "LICENSE"
pull_request:
branches: [master]
paths-ignore:
- "**.md"
- "docs/**"
- ".github/**"
- "**.txt"
- "**.json"
- "**.yaml"
- "**.yml"
- "LICENSE"

jobs:
build:
Expand All @@ -22,4 +40,4 @@ jobs:
- name: Run Unit tests
run: make unittest
- name: Run Integration tests
run: make test
run: make test

0 comments on commit 041124d

Please sign in to comment.