Skip to content

Commit

Permalink
chore: Update database migration workflows
Browse files Browse the repository at this point in the history
Enable database migration workflows for both production and staging environments by including the 'server/database/migrations/**' path in the respective workflows.
  • Loading branch information
Perdolique committed Aug 23, 2024
1 parent b5c0c1f commit 2f3aa25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/database-migration-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
push:
branches:
- master
# paths:
# - 'server/database/migrations/**'
paths:
- 'server/database/migrations/**'

jobs:
migration:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/database-migration-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
pull_request:
branches:
- master
# paths:
# - 'server/database/migrations/**'
paths:
- 'server/database/migrations/**'

jobs:
migration:
Expand Down

0 comments on commit 2f3aa25

Please sign in to comment.