mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
fix: properly ignore paths for backend workflow
This commit is contained in:
parent
6791624ca5
commit
5d77dff3bf
1 changed files with 6 additions and 9 deletions
15
.github/workflows/unit-backend.yml
vendored
15
.github/workflows/unit-backend.yml
vendored
|
@ -3,21 +3,18 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '!resources/assets/**'
|
||||
- .github/workflows/unit-backend.yml
|
||||
paths-ignore:
|
||||
- resources/assets/**
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '!resources/assets/**'
|
||||
- .github/workflows/unit-backend.yml
|
||||
paths-ignore:
|
||||
- resources/assets/**
|
||||
workflow_dispatch:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '!resources/assets/**'
|
||||
- .github/workflows/unit-backend.yml
|
||||
paths-ignore:
|
||||
- resources/assets/**
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue