Skip to content

Commit 54547a4

Browse files
authored
ci: fix postgres skipper (#3157)
1 parent 60de8d0 commit 54547a4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/coder.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ jobs:
6969
- id: log
7070
run: |
7171
echo "${{ toJSON(needs) }}"
72-
echo "${{ contains(needs.pr-context.outputs.skips, 'postgres') }} "
72+
echo "${{ contains(needs.pr-context.outputs.skips, 'test/go/postgres') }} "
73+
echo "${{ contains(needs.pr-context.outputs.skips, 'test/e2e') }} "
7374
7475
pr-context:
7576
runs-on: ubuntu-latest
@@ -331,7 +332,7 @@ jobs:
331332
- pr-context
332333
if: >
333334
needs.changes.outputs.docs-only == 'false' &&
334-
contains(needs.pr-context.outputs.skips, github.job) == 'false'
335+
!contains(needs.pr-context.outputs.skips, 'test/go/postgres')
335336
runs-on: ubuntu-latest
336337
# This timeout must be greater than the timeout set by `go test` in
337338
# `make test-postgres` to ensure we receive a trace of running

0 commit comments

Comments
 (0)