Refactor CI workflow triggers to specify paths for push and pull request events
This commit is contained in:
parent
d841d845fd
commit
754d6c6d7b
1 changed files with 10 additions and 1 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
|
@ -1,6 +1,15 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- ".github/workflows/ci.yml"
|
||||||
|
- "apps/infoalloggi/**"
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- ".github/workflows/ci.yml"
|
||||||
|
- "apps/infoalloggi/**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
INTERNAL_BASE_URL: "http://web:3000"
|
INTERNAL_BASE_URL: "http://web:3000"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue