Run actions only if code related files changes (#3000)

This commit is contained in:
Eduardo Cabral
2022-04-07 14:49:44 -03:00
committed by GitHub
parent 060069cf73
commit cca4038008
3 changed files with 39 additions and 3 deletions

View File

@@ -1,5 +1,17 @@
name: Prettify
on: [push, pull_request]
on:
push:
paths:
- 'src/**'
- '**.yml'
- '**.xml'
- '**.Dockerfile'
pull_request:
paths:
- 'src/**'
- '**.yml'
- '**.xml'
- '**.Dockerfile'
jobs:
prettier:
runs-on: ubuntu-latest