mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 10:33:02 -05:00
☁️ Server workflows run only when server files have changed (#4348)
* making the server workflows run only when server files have changed * release notes * also on merge to master * rabbit suggestion * e2e tests and size compare dont need to run when server changes * adding to the paths ignore
This commit is contained in:
7
.github/workflows/docker-edge.yml
vendored
7
.github/workflows/docker-edge.yml
vendored
@@ -5,12 +5,13 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths-ignore:
|
||||
- README.md
|
||||
- LICENSE.txt
|
||||
paths:
|
||||
- packages/sync-server
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- packages/sync-server
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
6
.github/workflows/e2e-test.yml
vendored
6
.github/workflows/e2e-test.yml
vendored
@@ -1,6 +1,10 @@
|
||||
name: E2E Tests
|
||||
|
||||
on: [pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- packages/sync-server
|
||||
- upcoming-release-notes
|
||||
|
||||
env:
|
||||
GITHUB_PR_NUMBER: ${{github.event.pull_request.number}}
|
||||
|
||||
3
.github/workflows/size-compare.yml
vendored
3
.github/workflows/size-compare.yml
vendored
@@ -13,6 +13,9 @@ name: Compare Sizes
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
paths-ignore:
|
||||
- packages/sync-server
|
||||
- upcoming-release-notes
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
||||
Reference in New Issue
Block a user