Skip to content
This repository has been archived by the owner on Aug 22, 2021. It is now read-only.

Commit

Permalink
Fix Github workflow path filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinrany committed Mar 24, 2021
1 parent ced69f1 commit 0a259fb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/persistence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: "CI: persistence"
on:
push:
paths:
- persistence
- .github/workflows/persistence
- persistence/**/*
- .github/workflows/persistence.yml
- .github/actions/**/*
workflow_dispatch:
defaults:
run:
Expand Down Expand Up @@ -33,6 +34,7 @@ jobs:
- run: pnpm test
build:
name: Build container image
needs: [check, test]
runs-on: ubuntu-latest
environment: DigitalOcean
steps:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: "CI: worker"
on:
push:
paths:
- worker
- .github/workflows/worker
- worker/**/*
- .github/workflows/worker.yml
- .github/actions/**/*
workflow_dispatch:
defaults:
run:
working-directory: worker
Expand Down Expand Up @@ -32,6 +34,7 @@ jobs:
- run: pnpm test
build:
name: Build container image
needs: [check, test]
runs-on: ubuntu-latest
environment: DigitalOcean
steps:
Expand Down

0 comments on commit 0a259fb

Please sign in to comment.