Skip to content

Commit

Permalink
Merge pull request #3398 from vespa-engine/kkraune/trig
Browse files Browse the repository at this point in the history
trigger on content files only
  • Loading branch information
kkraune committed Sep 25, 2024
2 parents b0d0135 + b2b8742 commit 21fadbc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/feed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: Vespa Documentation Search Feed
on:
push:
branches: [ master ]
paths:
- '*.md'
- '*.html'
- '**/*.md'
- '**/*.html'
- '.github/workflows/feed.yml'

env:
DATA_PLANE_PUBLIC_KEY : ${{ secrets.VESPA_TEAM_DATA_PLANE_PUBLIC_CERT }}
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,21 @@ on:
push:
branches:
- master
paths:
- '*.md'
- '*.html'
- '**/*.md'
- '**/*.html'
- '.github/workflows/link-checker.yml'
pull_request:
branches:
- master
paths:
- '*.md'
- '*.html'
- '**/*.md'
- '**/*.html'
- '.github/workflows/link-checker.yml'
schedule:
- cron: "00 3 * * 1-5"

Expand Down

0 comments on commit 21fadbc

Please sign in to comment.