Merge pull request #1038 from lnbits/workflow-only-on-pr
make gh workflows only run on pull_request
This commit is contained in:
commit
5758608347
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
|
@ -1,8 +1,6 @@
|
||||||
name: codeql
|
name: codeql
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches: [main, ]
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
schedule:
|
schedule:
|
||||||
|
|
2
.github/workflows/formatting.yml
vendored
2
.github/workflows/formatting.yml
vendored
|
@ -1,8 +1,6 @@
|
||||||
name: formatting
|
name: formatting
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches: [ main ]
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
|
|
||||||
|
|
2
.github/workflows/mypy.yml
vendored
2
.github/workflows/mypy.yml
vendored
|
@ -1,6 +1,6 @@
|
||||||
name: mypy
|
name: mypy
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
|
|
2
.github/workflows/regtest.yml
vendored
2
.github/workflows/regtest.yml
vendored
|
@ -1,6 +1,6 @@
|
||||||
name: regtest
|
name: regtest
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
LndRestWallet:
|
LndRestWallet:
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -1,6 +1,6 @@
|
||||||
name: tests
|
name: tests
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
venv-sqlite:
|
venv-sqlite:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user