Skip to content

Commit

Permalink
chore: filter workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar committed Aug 13, 2020
1 parent 035e04f commit 05d7ae8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/base.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: base

on: [push]
on:
push:
paths:
- "base/**"

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: postgres

on: [push]
on:
push:
paths:
- "postgres/**"

env:
POSTGRES_VERSION: 12.3-2
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/rabbitmq.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: rabbitmq

on: [push]
on:
push:
paths:
- "rabbitmq/**"

env:
RABBITMQ_VERSION: 3.8.6
Expand Down

0 comments on commit 05d7ae8

Please sign in to comment.