mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-19 21:45:36 +01:00
Skip CI tests for docs PRs (#2435)
* Skip CI tests for docs PRs * Fix docs
This commit is contained in:
parent
19c68b77b9
commit
f7c6fc141d
13 changed files with 13 additions and 1 deletions
1
.github/workflows/Compile.yml
vendored
1
.github/workflows/Compile.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
compile:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
1
.github/workflows/Linux_2.12_RPC_Tests.yml
vendored
1
.github/workflows/Linux_2.12_RPC_Tests.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
1
.github/workflows/Linux_2.13_RPC_Tests.yml
vendored
1
.github/workflows/Linux_2.13_RPC_Tests.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
1
.github/workflows/Mac_2.13_RPC_Tests.yml
vendored
1
.github/workflows/Mac_2.13_RPC_Tests.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: macos-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: macos-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
|
1
.github/workflows/PostgresTests.yml
vendored
1
.github/workflows/PostgresTests.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
env:
|
||||
PG_ENABLED: "1"
|
||||
steps:
|
||||
|
|
1
.github/workflows/Secp_Disabled_Tests.yml
vendored
1
.github/workflows/Secp_Disabled_Tests.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
env:
|
||||
DISABLE_SECP256K1: "true"
|
||||
steps:
|
||||
|
|
1
.github/workflows/Windows.yml
vendored
1
.github/workflows/Windows.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: windows-latest
|
||||
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
||||
steps:
|
||||
- name: Configure git
|
||||
run: "git config --global core.autocrlf false"
|
||||
|
|
|
@ -253,4 +253,4 @@ of all files in `core` project.
|
|||
|
||||
Bitcoin-S uses Github Actions to run tests and deploy library and website builds. Generally
|
||||
speaking CI has to pass for a PR to get merged. If you make documentation/website only
|
||||
changes, you can start your PR title with `Docs:`. This skips running tests on CI.
|
||||
changes, you can add the `documentation` label to your PR. This skips running tests on CI.
|
||||
|
|
Loading…
Add table
Reference in a new issue