Skip to content

Commit

Permalink
chore(): ignore docs and repo folders/files for tests (#2102)
Browse files Browse the repository at this point in the history
This will bypass tests for the following folders/files
- `**.md` -- all markdown files
- `'.github/*` -- files directly in the .github folder
- `.github/ISSUE_TEMPLATE/*` -- issue templates
- `docs/**` -- docs
- `images/**` -- images
  • Loading branch information
ryanfoxtyler authored Sep 6, 2024
1 parent 3488925 commit 40853f5
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci-aqua-security-trivy-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-aqua-security-trivy-tests
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
types:
- opened
- reopened
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-badger-bank-tests-nightly.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-badger-bank-tests-nightly
on:
push:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
branches:
- main
- 'release/v*'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-badger-bank-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-badger-bank-tests
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
branches:
- main
- 'release/v*'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-badger-tests-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-badger-tests-coverage
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
branches:
- main
- 'release/v*'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-badger-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-badger-tests
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
branches:
- main
- 'release/v*'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-dgraph-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-dgraph-tests
on:
push:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
branches:
- main
jobs:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-golang-lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci-golang-lint
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/*'
- '.github/ISSUE_TEMPLATE/*'
- 'docs/**'
- 'images/**'
branches:
- main
- 'release/v*'
Expand Down

0 comments on commit 40853f5

Please # to comment.