From 6372bf7178da81a8a2e608643245a8acec88a861 Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Sun, 24 Jul 2022 19:47:06 +0000 Subject: [PATCH 1/3] ci: fix postgres skipper --- .github/workflows/coder.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 7afe95b2c892e..4c461afb3c0d7 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -331,7 +331,7 @@ jobs: - pr-context if: > needs.changes.outputs.docs-only == 'false' && - contains(needs.pr-context.outputs.skips, github.job) == 'false' + contains(needs.pr-context.outputs.skips, 'test/go/postgres') == 'false' runs-on: ubuntu-latest # This timeout must be greater than the timeout set by `go test` in # `make test-postgres` to ensure we receive a trace of running From 2ee0f1eea6b9897a414f9d697fc63e68f029697d Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Sun, 24 Jul 2022 19:49:28 +0000 Subject: [PATCH 2/3] fixup! ci: fix postgres skipper --- .github/workflows/coder.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 4c461afb3c0d7..dea1bb86375d5 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -331,7 +331,7 @@ jobs: - pr-context if: > needs.changes.outputs.docs-only == 'false' && - contains(needs.pr-context.outputs.skips, 'test/go/postgres') == 'false' + !contains(needs.pr-context.outputs.skips, 'test/go/postgres') runs-on: ubuntu-latest # This timeout must be greater than the timeout set by `go test` in # `make test-postgres` to ensure we receive a trace of running From 268926837487b5ce92ef1d5bcac7cba253da6fe4 Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Sun, 24 Jul 2022 19:53:26 +0000 Subject: [PATCH 3/3] fixup! ci: fix postgres skipper --- .github/workflows/coder.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index dea1bb86375d5..b2cf2d7d93a9c 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -69,7 +69,8 @@ jobs: - id: log run: | echo "${{ toJSON(needs) }}" - echo "${{ contains(needs.pr-context.outputs.skips, 'postgres') }} " + echo "${{ contains(needs.pr-context.outputs.skips, 'test/go/postgres') }} " + echo "${{ contains(needs.pr-context.outputs.skips, 'test/e2e') }} " pr-context: runs-on: ubuntu-latest