Fix workflow to run on all files except .md
This commit is contained in:
parent
a0b0e58cb3
commit
53bde541fa
1 changed files with 5 additions and 2 deletions
7
.github/workflows/workflow.yml
vendored
7
.github/workflows/workflow.yml
vendored
|
|
@ -2,8 +2,11 @@ name: Main workflow
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- '*'
|
- '*.sh'
|
||||||
- '!*.md'
|
- '*.ps1'
|
||||||
|
- '*.yml'
|
||||||
|
- '*.ts'
|
||||||
|
- '*.js'
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
name: Run
|
name: Run
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue