make workflows only run on pull_request
This commit is contained in:
parent
5a12f4f237
commit
79319faa21
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
|
@ -1,8 +1,6 @@
|
|||
name: codeql
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, ]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
schedule:
|
||||
|
|
2
.github/workflows/formatting.yml
vendored
2
.github/workflows/formatting.yml
vendored
|
@ -1,8 +1,6 @@
|
|||
name: formatting
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
|
|
2
.github/workflows/mypy.yml
vendored
2
.github/workflows/mypy.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
name: mypy
|
||||
|
||||
on: [push, pull_request]
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
check:
|
||||
|
|
2
.github/workflows/regtest.yml
vendored
2
.github/workflows/regtest.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
name: regtest
|
||||
|
||||
on: [push, pull_request]
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
LndRestWallet:
|
||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
name: tests
|
||||
|
||||
on: [push, pull_request]
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
venv-sqlite:
|
||||
|
|
Loading…
Reference in New Issue
Block a user