We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60de8d0 commit 54547a4Copy full SHA for 54547a4
.github/workflows/coder.yaml
@@ -69,7 +69,8 @@ jobs:
69
- id: log
70
run: |
71
echo "${{ toJSON(needs) }}"
72
- echo "${{ contains(needs.pr-context.outputs.skips, 'postgres') }} "
+ echo "${{ contains(needs.pr-context.outputs.skips, 'test/go/postgres') }} "
73
+ echo "${{ contains(needs.pr-context.outputs.skips, 'test/e2e') }} "
74
75
pr-context:
76
runs-on: ubuntu-latest
@@ -331,7 +332,7 @@ jobs:
331
332
- pr-context
333
if: >
334
needs.changes.outputs.docs-only == 'false' &&
- contains(needs.pr-context.outputs.skips, github.job) == 'false'
335
+ !contains(needs.pr-context.outputs.skips, 'test/go/postgres')
336
337
# This timeout must be greater than the timeout set by `go test` in
338
# `make test-postgres` to ensure we receive a trace of running
0 commit comments