run github workflow only if an actual change has happened
This commit is contained in:
parent
ee73d00766
commit
28185c57a2
|
@ -3,8 +3,18 @@ name: Build development version
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
paths:
|
||||||
|
- .github/**
|
||||||
|
- src/**
|
||||||
|
- Cargo.toml
|
||||||
|
- Cargo.lock
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
paths:
|
||||||
|
- .github/**
|
||||||
|
- src/**
|
||||||
|
- Cargo.toml
|
||||||
|
- Cargo.lock
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
Loading…
Reference in New Issue