Skip to content

Commit bb3b6bc

Browse files
committed
deleteme: enable github actions on draft pr
1 parent 57f03b3 commit bb3b6bc

9 files changed

+14
-14
lines changed

.github/workflows/build-tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
build-tarball:
16-
if: github.event.pull_request.draft == false
16+
if: github.event.pull_request.draft == true
1717
env:
1818
PYTHON_VERSION: 3.9
1919
runs-on: ubuntu-latest

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
build-windows:
18-
if: github.event.pull_request.draft == false
18+
if: github.event.pull_request.draft == true
1919
runs-on: windows-latest
2020
steps:
2121
- uses: actions/checkout@v2

.github/workflows/coverage-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222

2323
jobs:
2424
coverage-linux:
25-
if: github.event.pull_request.draft == false
25+
if: github.event.pull_request.draft == true
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v2

.github/workflows/coverage-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222

2323
jobs:
2424
coverage-windows:
25-
if: github.event.pull_request.draft == false
25+
if: github.event.pull_request.draft == true
2626
runs-on: windows-latest
2727
steps:
2828
- uses: actions/checkout@v2

.github/workflows/linters.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
lint-addon-docs:
17-
if: github.event.pull_request.draft == false
17+
if: github.event.pull_request.draft == true
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v2
@@ -27,7 +27,7 @@ jobs:
2727
- name: Lint addon docs
2828
run: NODE=$(command -v node) make lint-addon-docs
2929
lint-cpp:
30-
if: github.event.pull_request.draft == false
30+
if: github.event.pull_request.draft == true
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v2
@@ -40,7 +40,7 @@ jobs:
4040
- name: Lint C/C++ files
4141
run: make lint-cpp
4242
lint-md:
43-
if: github.event.pull_request.draft == false
43+
if: github.event.pull_request.draft == true
4444
runs-on: ubuntu-latest
4545
steps:
4646
- uses: actions/checkout@v2
@@ -62,7 +62,7 @@ jobs:
6262
NODE_RELEASED_VERSIONS: ${{ steps.get-released-versions.outputs.NODE_RELEASED_VERSIONS }}
6363

6464
lint-js:
65-
if: github.event.pull_request.draft == false
65+
if: github.event.pull_request.draft == true
6666
runs-on: ubuntu-latest
6767
steps:
6868
- uses: actions/checkout@v2
@@ -75,7 +75,7 @@ jobs:
7575
- name: Lint JavaScript files
7676
run: NODE=$(command -v node) make lint-js
7777
lint-py:
78-
if: github.event.pull_request.draft == false
78+
if: github.event.pull_request.draft == true
7979
runs-on: ubuntu-latest
8080
steps:
8181
- uses: actions/checkout@v2
@@ -98,7 +98,7 @@ jobs:
9898
- name: Lint Shell scripts
9999
run: tools/lint-sh.js .
100100
lint-codeowners:
101-
if: github.event.pull_request.draft == false
101+
if: github.event.pull_request.draft == true
102102
runs-on: ubuntu-latest
103103
steps:
104104
- uses: actions/checkout@v2

.github/workflows/misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
build-docs:
16-
if: github.event.pull_request.draft == false
16+
if: github.event.pull_request.draft == true
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v2

.github/workflows/test-asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919

2020
jobs:
2121
test-asan:
22-
if: github.event.pull_request.draft == false
22+
if: github.event.pull_request.draft == true
2323
runs-on: ubuntu-latest
2424
env:
2525
CC: clang

.github/workflows/test-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
test-linux:
18-
if: github.event.pull_request.draft == false
18+
if: github.event.pull_request.draft == true
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v2

.github/workflows/test-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
test-macOS:
18-
if: github.event.pull_request.draft == false
18+
if: github.event.pull_request.draft == true
1919
runs-on: macos-latest
2020
steps:
2121
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)