Skip to content

Commit df09233

Browse files
committed
fixup! add needs
1 parent b1f3667 commit df09233

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/coder.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
timeout-minutes: 5
7878
runs-on: ubuntu-latest
7979
needs: changes
80-
if: needs.changes.outputs.docs-only == 'false'
80+
if: needs.changes.outputs.docs-only == false
8181
steps:
8282
- uses: actions/checkout@v3
8383
- name: Run ShellCheck
@@ -91,7 +91,7 @@ jobs:
9191
name: "style/lint/typescript"
9292
timeout-minutes: 5
9393
needs: changes
94-
if: needs.changes.outputs.docs-only == 'false'
94+
if: needs.changes.outputs.docs-only == false
9595
runs-on: ubuntu-latest
9696
steps:
9797
- name: Checkout
@@ -120,7 +120,7 @@ jobs:
120120
timeout-minutes: 5
121121
runs-on: ubuntu-latest
122122
needs: changes
123-
if: needs.changes.outputs.docs-only == 'false'
123+
if: needs.changes.outputs.docs-only == false
124124
steps:
125125
- uses: actions/checkout@v3
126126

@@ -157,7 +157,7 @@ jobs:
157157
style-fmt:
158158
name: "style/fmt"
159159
needs: changes
160-
if: needs.changes.outputs.docs-only == 'false'
160+
if: needs.changes.outputs.docs-only == false
161161
runs-on: ubuntu-latest
162162
timeout-minutes: 5
163163
steps:
@@ -191,7 +191,7 @@ jobs:
191191
test-go:
192192
name: "test/go"
193193
needs: changes
194-
if: needs.changes.outputs.docs-only == 'false'
194+
if: needs.changes.outputs.docs-only == false
195195
runs-on: ${{ matrix.os }}
196196
timeout-minutes: 20
197197
strategy:
@@ -269,7 +269,7 @@ jobs:
269269
test-go-postgres:
270270
name: "test/go/postgres"
271271
needs: changes
272-
if: needs.changes.outputs.docs-only == 'false'
272+
if: needs.changes.outputs.docs-only == false
273273
runs-on: ubuntu-latest
274274
# This timeout must be greater than the timeout set by `go test` in
275275
# `make test-postgres` to ensure we receive a trace of running
@@ -344,7 +344,7 @@ jobs:
344344
needs: changes
345345
if: |
346346
github.ref == 'refs/heads/main' && !github.event.pull_request.head.repo.fork
347-
&& needs.changes.outputs.docs-only == 'false'
347+
&& needs.changes.outputs.docs-only == false
348348
permissions:
349349
contents: read
350350
id-token: write
@@ -451,7 +451,7 @@ jobs:
451451
test-js:
452452
name: "test/js"
453453
needs: changes
454-
if: needs.changes.outputs.docs-only == 'false'
454+
if: needs.changes.outputs.docs-only == false
455455
runs-on: ubuntu-latest
456456
timeout-minutes: 20
457457
steps:
@@ -506,7 +506,7 @@ jobs:
506506
test-e2e:
507507
name: "test/e2e/${{ matrix.os }}"
508508
needs: changes
509-
if: needs.changes.outputs.docs-only == 'false'
509+
if: needs.changes.outputs.docs-only == false
510510
runs-on: ${{ matrix.os }}
511511
timeout-minutes: 20
512512
strategy:

0 commit comments

Comments
 (0)