From 692da486e3a18a6ad2350550ad99e347cca9fa74 Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 19:46:53 +0530 Subject: [PATCH 1/8] test Update main branch --- .github/workflows/deploy.yml | 2 +- docs/learn.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9619910..797fa8a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,4 +11,4 @@ jobs: steps: - name: Trigger Vercel deploy run: | - curl -X POST ${{ secrets.VERCEL_DEPLOY_LINK_PROD }} + curl -X GET https://tailpipe-io.vercel.app/api/revalidate-paths diff --git a/docs/learn.md b/docs/learn.md index 842f82e..cef3617 100644 --- a/docs/learn.md +++ b/docs/learn.md @@ -7,7 +7,7 @@ slug: / # Learn Tailpipe -Tailpipe is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: +Tailpipex is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: - Collect logs from various sources and store them efficiently - Query your data with familiar SQL syntax using Tailpipe (or DuckDB!) From cde1b110ec6079cd4e5389bf473b48341715f3ef Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 19:48:02 +0530 Subject: [PATCH 2/8] test Update main branch --- docs/learn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn.md b/docs/learn.md index cef3617..842f82e 100644 --- a/docs/learn.md +++ b/docs/learn.md @@ -7,7 +7,7 @@ slug: / # Learn Tailpipe -Tailpipex is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: +Tailpipe is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: - Collect logs from various sources and store them efficiently - Query your data with familiar SQL syntax using Tailpipe (or DuckDB!) From 7a0288b3a193694570876257183ab7c0fbc33383 Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 19:52:38 +0530 Subject: [PATCH 3/8] test --- docs/learn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn.md b/docs/learn.md index 842f82e..cef3617 100644 --- a/docs/learn.md +++ b/docs/learn.md @@ -7,7 +7,7 @@ slug: / # Learn Tailpipe -Tailpipe is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: +Tailpipex is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: - Collect logs from various sources and store them efficiently - Query your data with familiar SQL syntax using Tailpipe (or DuckDB!) From 9e0e913e63c37388ac8b34196995c5919fae4d0e Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 21:15:16 +0530 Subject: [PATCH 4/8] Add auth --- .github/workflows/deploy.yml | 3 ++- .github/workflows/trigger-tailpipe-io.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 797fa8a..9c691f9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,4 +11,5 @@ jobs: steps: - name: Trigger Vercel deploy run: | - curl -X GET https://tailpipe-io.vercel.app/api/revalidate-paths + curl -X GET https://tailpipe-io.vercel.app/api/service/revalidate-paths + -H "Authorization: Bearer ${{ secrets.TAILPIPE_API_KEY }}" diff --git a/.github/workflows/trigger-tailpipe-io.yml b/.github/workflows/trigger-tailpipe-io.yml index 88c8950..bf93bc4 100644 --- a/.github/workflows/trigger-tailpipe-io.yml +++ b/.github/workflows/trigger-tailpipe-io.yml @@ -37,10 +37,11 @@ jobs: script: | const branchName = 'docs/${{ github.event.pull_request.head.ref }}'; - const response = await fetch('https://tailpipe-io.vercel.app/api/deploy-details', { + const response = await fetch('https://tailpipe-io.vercel.app/api/service/deploy-details', { method: 'POST', headers: { 'Content-Type': 'application/json', + 'Authorization': 'Bearer ${{ secrets.TAILPIPE_API_KEY }}', }, body: JSON.stringify({ branch: branchName }), }); From 45f7599513a6b9abf4e99fd06acba2e69cb8a6c0 Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 21:18:48 +0530 Subject: [PATCH 5/8] Add auth --- docs/learn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn.md b/docs/learn.md index cef3617..842f82e 100644 --- a/docs/learn.md +++ b/docs/learn.md @@ -7,7 +7,7 @@ slug: / # Learn Tailpipe -Tailpipex is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: +Tailpipe is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: - Collect logs from various sources and store them efficiently - Query your data with familiar SQL syntax using Tailpipe (or DuckDB!) From 94115cde775f928299cce4a2c3ef149d02ac7afb Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 21:27:21 +0530 Subject: [PATCH 6/8] Add auth --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9c691f9..eb17a0e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,5 +11,5 @@ jobs: steps: - name: Trigger Vercel deploy run: | - curl -X GET https://tailpipe-io.vercel.app/api/service/revalidate-paths + curl -X GET https://tailpipe-io.vercel.app/api/service/revalidate-paths \ -H "Authorization: Bearer ${{ secrets.TAILPIPE_API_KEY }}" From 3ab7bb00728caeb4a78f4f9f6a2437b62cf3b839 Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 21:32:49 +0530 Subject: [PATCH 7/8] Add auth --- docs/learn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn.md b/docs/learn.md index 842f82e..35bcf94 100644 --- a/docs/learn.md +++ b/docs/learn.md @@ -7,7 +7,7 @@ slug: / # Learn Tailpipe -Tailpipe is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: +AAAAAAA is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: - Collect logs from various sources and store them efficiently - Query your data with familiar SQL syntax using Tailpipe (or DuckDB!) From 9efc340cb1fc21aac6caa66647b2f3ae04c807bb Mon Sep 17 00:00:00 2001 From: Karan Popat Date: Wed, 8 Jan 2025 21:34:59 +0530 Subject: [PATCH 8/8] Add auth --- docs/learn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn.md b/docs/learn.md index 35bcf94..842f82e 100644 --- a/docs/learn.md +++ b/docs/learn.md @@ -7,7 +7,7 @@ slug: / # Learn Tailpipe -AAAAAAA is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: +Tailpipe is a high-performance data collection and querying tool that makes it easy to collect, store, and analyze log data. With Tailpipe you can: - Collect logs from various sources and store them efficiently - Query your data with familiar SQL syntax using Tailpipe (or DuckDB!)